Merge pull request #14837 from Cartucho:fix_laplace_operator_on_python

This commit is contained in:
Alexander Alekhin 2019-07-01 17:00:24 +00:00
commit b00e19a8da

View File

@ -40,7 +40,7 @@ def main(argv):
# [laplacian]
# Apply Laplace function
dst = cv.Laplacian(src_gray, ddepth, kernel_size)
dst = cv.Laplacian(src_gray, ddepth, ksize=kernel_size)
# [laplacian]
# [convert]