mirror of
https://github.com/debnarpavol/spajanie_snimkov_uprava_jasu.git
synced 2025-08-07 20:57:19 +02:00
formatting
This commit is contained in:
@ -226,7 +226,9 @@ class PointBase {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief shows the location of loaded points on an images
|
* @brief shows the location of loaded points on an images
|
||||||
|
*
|
||||||
* useful for debugging
|
* useful for debugging
|
||||||
|
*
|
||||||
* images have to be loaded using the load() function
|
* images have to be loaded using the load() function
|
||||||
*/
|
*/
|
||||||
void showPointImg()
|
void showPointImg()
|
||||||
@ -244,8 +246,11 @@ class PointBase {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief DESTRUCTIVE!! - removes found adj. points from points vector, adds them to the toBeDone vector
|
* @brief DESTRUCTIVE!! - removes found adj. points from points vector, adds them to the toBeDone vector
|
||||||
|
*
|
||||||
* Searches for adjacent points to a given point
|
* Searches for adjacent points to a given point
|
||||||
|
*
|
||||||
* Returns either empty vector, or a vector with the found adjacent points
|
* Returns either empty vector, or a vector with the found adjacent points
|
||||||
|
*
|
||||||
* @param inputPoint - opencv Point2d of the searched point
|
* @param inputPoint - opencv Point2d of the searched point
|
||||||
* @return vector of <Point2d> - points of images which are adjacent to the inputPoint
|
* @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
|
* @brief stitches images using opencv pipeline
|
||||||
|
*
|
||||||
* points have to be loaded in the pointBase first
|
* points have to be loaded in the pointBase first
|
||||||
|
*
|
||||||
* saves the result image in current directory
|
* saves the result image in current directory
|
||||||
*/
|
*/
|
||||||
void stitchImgs()
|
void stitchImgs()
|
||||||
@ -774,6 +781,7 @@ class PointBase {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief image stitching using SIFT
|
* @brief image stitching using SIFT
|
||||||
|
*
|
||||||
* saves the source image to the current directory
|
* saves the source image to the current directory
|
||||||
*
|
*
|
||||||
* @param imgW source image width
|
* @param imgW source image width
|
||||||
@ -1338,7 +1346,9 @@ class PointBase {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief stitches images using pattern matching
|
* @brief stitches images using pattern matching
|
||||||
|
*
|
||||||
* saves the source image to the current directory
|
* saves the source image to the current directory
|
||||||
|
*
|
||||||
* @param imgW width of the source images
|
* @param imgW width of the source images
|
||||||
* @param imgH height of the source images
|
* @param imgH height of the source images
|
||||||
*/
|
*/
|
||||||
@ -1797,8 +1807,11 @@ class PointBase {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief online image stitching using pattern matching
|
* @brief online image stitching using pattern matching
|
||||||
|
*
|
||||||
* saves the result image to the current directory
|
* saves the result image to the current directory
|
||||||
|
*
|
||||||
* do not load() any database previous to using this function
|
* do not load() any database previous to using this function
|
||||||
|
*
|
||||||
* @param imgW source image width
|
* @param imgW source image width
|
||||||
* @param imgH source image height
|
* @param imgH source image height
|
||||||
* @param path path to the images
|
* @param path path to the images
|
||||||
@ -2056,8 +2069,11 @@ class PointBase {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief online image stitching using SIFT
|
* @brief online image stitching using SIFT
|
||||||
|
*
|
||||||
* saves the result image to the current directory
|
* saves the result image to the current directory
|
||||||
|
*
|
||||||
* do not load() any database previous to using this function
|
* do not load() any database previous to using this function
|
||||||
|
*
|
||||||
* @param imgW source image width
|
* @param imgW source image width
|
||||||
* @param imgH source image height
|
* @param imgH source image height
|
||||||
* @param path path to the images
|
* @param path path to the images
|
||||||
|
Reference in New Issue
Block a user