1 | initial version |
Hi! MatOfKeyPoint
just extends Mat
(you can check implemetation in src/org/opencv/core/MatOfKeyPoint.java
folder of your OpenCV android sdk). So, in native side, it just a Mat
with CV_32FC7
type. Try to cast it to Mat
in usual way.
2 | No.2 Revision |
Hi! MatOfKeyPoint
just extends Mat
(you can check implemetation in src/org/opencv/core/MatOfKeyPoint.java
folder of your OpenCV android sdk). So, in native side, it just a Mat
with CV_32FC7
type. Try to cast it to Mat
in usual way.