summaryrefslogtreecommitdiff
path: root/macros/houghlinesp.sci
blob: 81007aa8eac0cc2f04ff7b70fa897dec66e19c07 (plain)
1
2
3
4
5
6
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