Skip to content

Commit

Permalink
Merge pull request #396 from clEsperanto/fix-default-value
Browse files Browse the repository at this point in the history
fix default values
  • Loading branch information
StRigaud authored Nov 14, 2024
2 parents ecb3577 + 2167646 commit 5c32a1a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions clic/include/tier2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -403,9 +403,9 @@ degrees_to_radians_func(const Device::Pointer & device, const Array::Pointer & s
* @param device Device to perform the operation on. [const Device::Pointer &]
* @param src Input image to process. [const Array::Pointer &]
* @param dst Output result image. [Array::Pointer ( = None )]
* @param radius_x Radius along the x axis. [float ( = 1 )]
* @param radius_y Radius along the y axis. [float ( = 1 )]
* @param radius_z Radius along the z axis. [float ( = 1 )]
* @param radius_x Radius along the x axis. [float ( = 0 )]
* @param radius_y Radius along the y axis. [float ( = 0 )]
* @param radius_z Radius along the z axis. [float ( = 0 )]
* @return Array::Pointer
*
* @note 'binarize', 'in assistant'
Expand All @@ -428,9 +428,9 @@ detect_maxima_box_func(const Device::Pointer & device,
* @param device Device to perform the operation on. [const Device::Pointer &]
* @param src Input image to process. [const Array::Pointer &]
* @param dst Output result image. [Array::Pointer ( = None )]
* @param radius_x Radius along the x axis. [float ( = 1 )]
* @param radius_y Radius along the y axis. [float ( = 1 )]
* @param radius_z Radius along the z axis. [float ( = 1 )]
* @param radius_x Radius along the x axis. [float ( = 0 )]
* @param radius_y Radius along the y axis. [float ( = 0 )]
* @param radius_z Radius along the z axis. [float ( = 0 )]
* @param connectivity Element shape, "box" or "sphere" [std::string ( = "box" )]
* @return Array::Pointer
*
Expand All @@ -456,9 +456,9 @@ detect_maxima_func(const Device::Pointer & device,
* @param device Device to perform the operation on. [const Device::Pointer &]
* @param src Input image to process. [const Array::Pointer &]
* @param dst Output result image. [Array::Pointer ( = None )]
* @param radius_x Radius along the x axis. [float ( = 1 )]
* @param radius_y Radius along the y axis. [float ( = 1 )]
* @param radius_z Radius along the z axis. [float ( = 1 )]
* @param radius_x Radius along the x axis. [float ( = 0 )]
* @param radius_y Radius along the y axis. [float ( = 0 )]
* @param radius_z Radius along the z axis. [float ( = 0 )]
* @return Array::Pointer
*
* @note 'binarize', 'in assistant'
Expand All @@ -481,9 +481,9 @@ detect_minima_box_func(const Device::Pointer & device,
* @param device Device to perform the operation on. [const Device::Pointer &]
* @param src Input image to process. [const Array::Pointer &]
* @param dst Output result image. [Array::Pointer ( = None )]
* @param radius_x Radius along the x axis. [float ( = 1 )]
* @param radius_y Radius along the y axis. [float ( = 1 )]
* @param radius_z Radius along the z axis. [float ( = 1 )]
* @param radius_x Radius along the x axis. [float ( = 0 )]
* @param radius_y Radius along the y axis. [float ( = 0 )]
* @param radius_z Radius along the z axis. [float ( = 0 )]
* @param connectivity Element shape, "box" or "sphere" [std::string ( = "box" )]
* @return Array::Pointer
*
Expand Down
2 changes: 1 addition & 1 deletion docs/source/versions.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"0.15.1":
tag: '0.15.1'
tag: '0.15.1'
languages:
- "en"

0 comments on commit 5c32a1a

Please sign in to comment.