gpt4 book ai didi

java - 在java opencv中从MatOfKeyPoint获取前100个值

转载 作者:行者123 更新时间:2023-11-30 06:44:20 25 4
gpt4 key购买 nike

我正在从图像中提取 Surf_KeyPointsKeyPoints长度为 130,现在我想获取第一个 100 来自其中的关键点并将它们存储回该类型的变量/对象...

int detectrType2 = FeatureDetector.SURF;
FeatureDetector surfDetector = FeatureDetector.create(detectrType2);
MatOfKeyPoint keypPoints = new MatOfKeyPoint();
surfDetector.detect(inputImg, keyPoints);

最佳答案

这是您的数据:

List input;

那么可以使用Java的sublist方法只获取前100个元素

List croppedList = new ArrayList(input.subList(0, 100))

当然是在类型参数列表中。

关于java - 在java opencv中从MatOfKeyPoint获取前100个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43918818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com