Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. var kp1 = new cv.KeyPointVector(); --------here is the keypoint vector
  2. // find the keypoints with ORB
  3. orb.detect(orig, kp1, noArray1);
  4. // compute the descriptors with ORB
  5.  
  6. var das=new cv.Mat();
  7. orb.compute(orig, kp1, das);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement