Skip to content

Commit

Permalink
Corrected doxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe0606 committed Jun 6, 2024
1 parent 031b082 commit 849a005
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Source/ImageTransforms/arm_image_resize_bgr_8U3C_f32.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@


/**
* @brief resize BGR 8U3C (float implementation)
* @brief Resize BGR 8U3C image (float implementation)
*
* @param[in] ImageIn The input image
* @param ImageOut The output image
Expand All @@ -41,7 +41,7 @@
*
* Size of temporary buffers:
* - p_img\n
* 2 * output_w*sizeof(uint8_t)
* 2 * ImageOut->width*sizeof(uint8_t)
*/
void arm_image_resize_bgr_8U3C_f32(const arm_cv_image_bgr_8U3C_t* ImageIn,
arm_cv_image_bgr_8U3C_t* ImageOut,
Expand Down
4 changes: 2 additions & 2 deletions Source/ImageTransforms/arm_image_resize_gray8_f32.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@


/**
* @brief resize BGR 8U3C (float implementation)
* @brief Resize gray image (float implementation)
*
* @param[in] ImageIn The input image
* @param ImageOut The output image
Expand All @@ -41,7 +41,7 @@
*
* Size of temporary buffers:
* - p_img\n
* 2 * output_w*sizeof(uint8_t)
* 2 * ImageOut->width*sizeof(uint8_t)
*/
void arm_image_resize_gray8_f32(const arm_cv_image_gray8_t* ImageIn,
arm_cv_image_gray8_t* ImageOut,
Expand Down

0 comments on commit 849a005

Please sign in to comment.