Skip to content

Commit 0128aea

Browse files
authored
Update opencv_imgproc.cc
1 parent 6afe94c commit 0128aea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/opencv2/opencv_imgproc.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ PHP_FUNCTION(opencv_gaussian_blur){
483483
dst_object = Z_PHP_MAT_OBJ_P(dst_real_zval);
484484
dst_object->mat = new Mat(dst);
485485
}
486-
GaussianBlur(*src_object->mat, *dst_object->mat, *ksize_object->size, (double)sigma_x, (double)sigma_y, (int)border_type);
486+
GaussianBlur(*src_object->mat, *dst_object->mat, *ksize_object->size, sigma_x, sigma_y, (int)border_type);
487487
RETURN_NULL();
488488
}
489489

0 commit comments

Comments
 (0)