1

如何MatOfKeyPoint正确建立一个?

到目前为止,我的代码是:

System.loadLibrary(Core.NATIVE_LIBRARY_NAME);

String sourcePath = path;
Features2d features2d = new Features2d();
Mat srcImgMat = Highgui.imread(sourcePath);
MatOfKeyPoint mat = new MatOfKeyPoint(srcImgMat);

现在我有一些KeyPoint我创建的 s 和它的位置。

KeyPoint tempKeypoint = new KeyPoint();

但我不能将它们插入,mat因为方法put不支持这种类型。我能做些什么?

4

0 回答 0