From 787632af2b955bd843721555c66c7e7c49d549b0 Mon Sep 17 00:00:00 2001 From: Suleyman TURKMEN Date: Tue, 22 Oct 2024 23:45:46 +0300 Subject: [PATCH] Update radon_transform.hpp --- modules/ximgproc/include/opencv2/ximgproc/radon_transform.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ximgproc/include/opencv2/ximgproc/radon_transform.hpp b/modules/ximgproc/include/opencv2/ximgproc/radon_transform.hpp index 9a32678fec..d53d50a94e 100644 --- a/modules/ximgproc/include/opencv2/ximgproc/radon_transform.hpp +++ b/modules/ximgproc/include/opencv2/ximgproc/radon_transform.hpp @@ -23,7 +23,7 @@ namespace cv { namespace ximgproc { * * The size of the output matrix depends on whether cropping is applied: * - Without cropping, the output size will be `num_of_integral x src_diagonal_length`. - * - With cropping (circular), the output size will be `num_of_integral x min_edge`, + * - With cropping (circular), the output size will be `num_of_integral x min_edge`, * where `min_edge` is the smaller dimension of the cropped square. * * See https://engineering.purdue.edu/~malcolm/pct/CTI_Ch03.pdf for more details.