i was trying to print the keypoints in the orb feature matching but it was not showing the keypoints.
here is my code
var kp1 = new cv.KeyPointVector(); --------here is the keypoint vector
// find the keypoints with ORB
orb.detect(orig, kp1, noArray1);
// compute the descriptors with ORB
var das=new cv.Mat();
orb.compute(orig, kp1, das);
In this keypoint vector should contain all the key feature points and i want to console.log() all the keypoints, could you please help me in finding the solution
when I tried to access the points then keypoints vector didn't have the point property which is available otherwise in python
Aucun commentaire:
Enregistrer un commentaire