Skip to content

Commit 6733762

Browse files
authored
Merge pull request #3839 from asmorkalov:as/fastcv_docs_warn_fix
Warnings fix in FastCV module documentation.
2 parents 2c7591c + 2e27b94 commit 6733762

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

modules/fastcv/include/opencv2/fastcv.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88

99
#include <opencv2/core.hpp>
1010

11-
/**
12-
* @defgroup fastcv Module-wrapper for FastCV hardware accelerated functions
13-
*/
14-
1511
#include "opencv2/fastcv/arithm.hpp"
1612
#include "opencv2/fastcv/bilateralFilter.hpp"
1713
#include "opencv2/fastcv/cluster.hpp"
@@ -27,6 +23,10 @@
2723
#include "opencv2/fastcv/smooth.hpp"
2824
#include "opencv2/fastcv/thresh.hpp"
2925

30-
//! @}
26+
/**
27+
* @defgroup fastcv Module-wrapper for FastCV hardware accelerated functions
28+
* @{
29+
* @}
30+
*/
3131

3232
#endif // OPENCV_FASTCV_ARITHM_HPP

modules/fastcv/include/opencv2/fastcv/arithm.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ namespace fastcv {
2222
* @param dst Resulting matrix of type CV_32S
2323
*/
2424
CV_EXPORTS_W void matmuls8s32(InputArray src1, InputArray src2, OutputArray dst);
25+
2526
//! @}
2627

2728
} // fastcv::

modules/fastcv/include/opencv2/fastcv/scale.hpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ namespace fastcv {
1616

1717
/**
1818
* @brief Down-scale the image by averaging each 2x2 pixel block.
19-
* @param src The first input image data, type CV_8UC1, src height must be a multiple of 2
20-
* @param dst The output image data, type CV_8UC1
19+
* @param _src The first input image data, type CV_8UC1, src height must be a multiple of 2
20+
* @param _dst The output image data, type CV_8UC1
2121
*/
2222
CV_EXPORTS_W void resizeDownBy2(cv::InputArray _src, cv::OutputArray _dst);
2323

2424
/**
2525
* @brief Down-scale the image by averaging each 4x4 pixel block.
26-
* @param src The first input image data, type CV_8UC1, src height must be a multiple of 4
27-
* @param dst The output image data, type CV_8UC1
26+
* @param _src The first input image data, type CV_8UC1, src height must be a multiple of 4
27+
* @param _dst The output image data, type CV_8UC1
2828
*/
2929
CV_EXPORTS_W void resizeDownBy4(cv::InputArray _src, cv::OutputArray _dst);
3030

@@ -33,4 +33,4 @@ CV_EXPORTS_W void resizeDownBy4(cv::InputArray _src, cv::OutputArray _dst);
3333
} // fastcv::
3434
} // cv::
3535

36-
#endif // OPENCV_FASTCV_SCALE_HPP
36+
#endif // OPENCV_FASTCV_SCALE_HPP

0 commit comments

Comments
 (0)