node-opencv icon indicating copy to clipboard operation
node-opencv copied to clipboard

goodFeaturesToTrack documentation

Open JonnyBGod opened this issue 10 years ago • 2 comments

Hi,

I am having problems with passing params to goodFeaturesToTrack(). Docs for this function would be very helpful.

Thanks

JonnyBGod avatar Aug 20 '15 16:08 JonnyBGod

Hi JonnyBGod, I have the same problem... I would like to pass some parameter as qualityLevel, minDistance when calling goodFeaturesToTrack but seems it is not possible... and the result is a image with to many corners recognized...

dataTracer1975 avatar Aug 04 '16 20:08 dataTracer1975

There's no params for goodFeaturesToTrack() in opencv-node.

It's just setting predefined params:

cv::goodFeaturesToTrack(gray, corners, 500, 0.01, 10);

It definitely should be rebuild, so params can be passed in.

danschultzer avatar Sep 23 '16 00:09 danschultzer