formatting

This commit is contained in:
Pavol Debnar
2023-05-17 16:21:13 +02:00
parent 69bcf4973a
commit 4017644684
+16
View File
@@ -226,7 +226,9 @@ class PointBase {
/**
* @brief shows the location of loaded points on an images
*
* useful for debugging
*
* images have to be loaded using the load() function
*/
void showPointImg()
@@ -244,8 +246,11 @@ class PointBase {
/**
* @brief DESTRUCTIVE!! - removes found adj. points from points vector, adds them to the toBeDone vector
*
* Searches for adjacent points to a given point
*
* Returns either empty vector, or a vector with the found adjacent points
*
* @param inputPoint - opencv Point2d of the searched point
* @return vector of <Point2d> - points of images which are adjacent to the inputPoint
*/
@@ -593,7 +598,9 @@ class PointBase {
/**
* @brief stitches images using opencv pipeline
*
* points have to be loaded in the pointBase first
*
* saves the result image in current directory
*/
void stitchImgs()
@@ -774,6 +781,7 @@ class PointBase {
/**
* @brief image stitching using SIFT
*
* saves the source image to the current directory
*
* @param imgW source image width
@@ -1338,7 +1346,9 @@ class PointBase {
/**
* @brief stitches images using pattern matching
*
* saves the source image to the current directory
*
* @param imgW width of the source images
* @param imgH height of the source images
*/
@@ -1797,8 +1807,11 @@ class PointBase {
/**
* @brief online image stitching using pattern matching
*
* saves the result image to the current directory
*
* do not load() any database previous to using this function
*
* @param imgW source image width
* @param imgH source image height
* @param path path to the images
@@ -2056,8 +2069,11 @@ class PointBase {
/**
* @brief online image stitching using SIFT
*
* saves the result image to the current directory
*
* do not load() any database previous to using this function
*
* @param imgW source image width
* @param imgH source image height
* @param path path to the images