From a6df67e8bcd5159cde27556f4f6a315f8dc2215f Mon Sep 17 00:00:00 2001 From: shamikam Date: Mon, 16 Jan 2017 02:56:17 +0530 Subject: First Commit --- macros/houghlinesp.sci | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 macros/houghlinesp.sci (limited to 'macros/houghlinesp.sci') 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 -- cgit