本文整理汇总了Java中com.stromberglabs.jopensurf.Surf.getFreeOrientedInterestPoints方法的典型用法代码示例。如果您正苦于以下问题:Java Surf.getFreeOrientedInterestPoints方法的具体用法?Java Surf.getFreeOrientedInterestPoints怎么用?Java Surf.getFreeOrientedInterestPoints使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.stromberglabs.jopensurf.Surf
的用法示例。
在下文中一共展示了Surf.getFreeOrientedInterestPoints方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createDescriptorFields
import com.stromberglabs.jopensurf.Surf; //导入方法依赖的package包/类
@Override
public Field[] createDescriptorFields(BufferedImage image) {
Field[] result = null;
Surf s = new Surf(image);
List<SURFInterestPoint> interestPoints = s.getFreeOrientedInterestPoints();
result = new Field[interestPoints.size()];
int count = 0;
for (Iterator<SURFInterestPoint> sipi = interestPoints.iterator(); sipi.hasNext(); ) {
SURFInterestPoint sip = sipi.next();
SurfFeature sf = new SurfFeature(sip);
result[count] = (new StoredField(DocumentBuilder.FIELD_NAME_SURF, sf.getByteArrayRepresentation()));
count++;
}
return result;
}
示例2: createDocument
import com.stromberglabs.jopensurf.Surf; //导入方法依赖的package包/类
public Document createDocument(BufferedImage image, String identifier) {
Document doc = null;
Surf s = new Surf(image);
List<SURFInterestPoint> interestPoints = s.getFreeOrientedInterestPoints();
doc = new Document();
for (Iterator<SURFInterestPoint> sipi = interestPoints.iterator(); sipi.hasNext(); ) {
SURFInterestPoint sip = sipi.next();
SurfFeature sf = new SurfFeature(sip);
doc.add(new StoredField(DocumentBuilder.FIELD_NAME_SURF, sf.getByteArrayRepresentation()));
}
if (identifier != null)
doc.add(new StringField(DocumentBuilder.FIELD_NAME_IDENTIFIER, identifier, Field.Store.YES));
return doc;
}
示例3: testExtract
import com.stromberglabs.jopensurf.Surf; //导入方法依赖的package包/类
public void testExtract() throws IOException {
Surf sm = new Surf(ImageIO.read(new FileInputStream("wang-1000/0.jpg")));
// Surf sm = new SurfMser(ImageIO.read(new FileInputStream("wang-1000/0.jpg")));
List<SURFInterestPoint> pts = sm.getFreeOrientedInterestPoints();
for (Iterator<SURFInterestPoint> surfInterestPointIterator = pts.iterator(); surfInterestPointIterator.hasNext(); ) {
SURFInterestPoint pt = surfInterestPointIterator.next();
System.out.println(pt.getX() + ", " + pt.getY());
}
}