summaryrefslogtreecommitdiff
path: root/macros/goodfeaturestotrack.sci
blob: d8bb5bcb61c42456bd3f838142efdef1a1fe7fc8 (plain)
1
2
3
4
5
6
7
function corner_points = goodfeaturestotrack(image, maxcorners, qualityLevel, minDistance, blocksize, usedetector, k)
	
	image_list = mattolist(image)
	
	corner_points = opencv_goodfeaturestotrack(image_list, maxcorners, qualityLevel, minDistance, blocksize, usedetector, k)
	
endfunction