Skip to content

Commit 2a7f0ba

Browse files
committed
fix trailing space
1 parent e74720e commit 2a7f0ba

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

modules/ximgproc/include/opencv2/ximgproc/radon_transform.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ namespace cv { namespace ximgproc {
2626
* The output size will be num_of_integral x src_diagonal_length.
2727
* If crop is selected, the input image will be crop into square then circle,
2828
* and output size will be num_of_integral x min_edge.
29-
*
29+
*
3030
*/
3131
CV_EXPORTS_W void RadonTransform(InputArray src,
3232
OutputArray dst,

modules/ximgproc/src/radon_transform.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ namespace cv {namespace ximgproc {
6262
Mat _radon(_row_num, _col_num, _out_mat_type);
6363

6464
for (int _col = 0; _col < _col_num; _col++) {
65-
// rotate the source by _t
65+
// rotate the source by _t
6666
_t = (start_angle + _col * theta);
6767
cv::Mat _r_matrix = cv::getRotationMatrix2D(_center, _t, 1);
6868
cv::warpAffine(_masked_src, _rotated_src, _r_matrix, _masked_src.size());

0 commit comments

Comments
 (0)