diff options
Diffstat (limited to 'macros/houghlinesp.sci')
-rw-r--r-- | macros/houghlinesp.sci | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/macros/houghlinesp.sci b/macros/houghlinesp.sci new file mode 100644 index 0000000..81007aa --- /dev/null +++ b/macros/houghlinesp.sci @@ -0,0 +1,7 @@ +function output = houghlinesp(image, rho, theta, threshold, minLineLength, maxLineGap) + + image_list = mattolist(image) + + output = opencv_houghlinesp(image_list, rho, theta, threshold, minLineLength, maxLineGap) + +endfunction |