Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warnings fix in FastCV module documentation. #3839

Merged
merged 1 commit into from
Dec 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions modules/fastcv/include/opencv2/fastcv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@

#include <opencv2/core.hpp>

/**
* @defgroup fastcv Module-wrapper for FastCV hardware accelerated functions
*/

#include "opencv2/fastcv/arithm.hpp"
#include "opencv2/fastcv/bilateralFilter.hpp"
#include "opencv2/fastcv/cluster.hpp"
Expand All @@ -27,6 +23,10 @@
#include "opencv2/fastcv/smooth.hpp"
#include "opencv2/fastcv/thresh.hpp"

//! @}
/**
* @defgroup fastcv Module-wrapper for FastCV hardware accelerated functions
* @{
* @}
*/

#endif // OPENCV_FASTCV_ARITHM_HPP
1 change: 1 addition & 0 deletions modules/fastcv/include/opencv2/fastcv/arithm.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ namespace fastcv {
* @param dst Resulting matrix of type CV_32S
*/
CV_EXPORTS_W void matmuls8s32(InputArray src1, InputArray src2, OutputArray dst);

//! @}

} // fastcv::
Expand Down
10 changes: 5 additions & 5 deletions modules/fastcv/include/opencv2/fastcv/scale.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ namespace fastcv {

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

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

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

#endif // OPENCV_FASTCV_SCALE_HPP
#endif // OPENCV_FASTCV_SCALE_HPP