trailing whitespaces

This commit is contained in:
Rostislav Vasilikhin 2022-10-25 02:58:55 +02:00
parent a1820ff3d4
commit 95ab8517ae

View File

@ -38,7 +38,7 @@ class CV_EXPORTS_W OdometryFrame
public: public:
/** /**
* @brief Construct a new OdometryFrame object. All non-empty images should have the same size. * @brief Construct a new OdometryFrame object. All non-empty images should have the same size.
* *
* @param image An RGB or grayscale image (or noArray() if it's not required for used ICP algorithm). * @param image An RGB or grayscale image (or noArray() if it's not required for used ICP algorithm).
* Should have 3 or 4 uchar channels if it's RGB image or 1 uchar channel if it's grayscale. If it's RGB then it's converted to grayscale * Should have 3 or 4 uchar channels if it's RGB image or 1 uchar channel if it's grayscale. If it's RGB then it's converted to grayscale
* image automatically. * image automatically.
@ -51,37 +51,37 @@ public:
/** /**
* @brief Get the original user-provided RGB/Gray image * @brief Get the original user-provided RGB/Gray image
* *
* @param image Output image * @param image Output image
*/ */
void getImage(OutputArray image) const; void getImage(OutputArray image) const;
/** /**
* @brief Get the gray image generated from the user-provided RGB/Gray image * @brief Get the gray image generated from the user-provided RGB/Gray image
* *
* @param image Output image * @param image Output image
*/ */
void getGrayImage(OutputArray image) const; void getGrayImage(OutputArray image) const;
/** /**
* @brief Get the original user-provided depth image * @brief Get the original user-provided depth image
* *
* @param depth Output image * @param depth Output image
*/ */
void getDepth(OutputArray depth) const; void getDepth(OutputArray depth) const;
/** /**
* @brief Get the depth image generated from the user-provided one after conversion, rescale or filtering for ICP algorithm needs * @brief Get the depth image generated from the user-provided one after conversion, rescale or filtering for ICP algorithm needs
* *
* @param depth Output image * @param depth Output image
*/ */
void getProcessedDepth(OutputArray depth) const; void getProcessedDepth(OutputArray depth) const;
/** /**
* @brief Get the valid pixels mask generated for the ICP calculations intersected with the user-provided mask * @brief Get the valid pixels mask generated for the ICP calculations intersected with the user-provided mask
* *
* @param mask Output image * @param mask Output image
*/ */
void getMask(OutputArray mask) const; void getMask(OutputArray mask) const;
/** /**
* @brief Get the normals image either generated for the ICP calculations or user-provided * @brief Get the normals image either generated for the ICP calculations or user-provided
* *
* @param normals Output image * @param normals Output image
*/ */
void getNormals(OutputArray normals) const; void getNormals(OutputArray normals) const;
@ -94,7 +94,7 @@ public:
/** /**
* @brief Get the image generated for the ICP calculations from one of the pyramids specified by pyrType. Returns empty image if * @brief Get the image generated for the ICP calculations from one of the pyramids specified by pyrType. Returns empty image if
* the pyramid is empty or there's no such pyramid level * the pyramid is empty or there's no such pyramid level
* *
* @param img Output image * @param img Output image
* @param pyrType Type of pyramid * @param pyrType Type of pyramid
* @param level Level in the pyramid * @param level Level in the pyramid