当前位置: 首页>>代码示例>>Java>>正文


Java Surf.getFreeOrientedInterestPoints方法代码示例

本文整理汇总了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;
}
 
开发者ID:fish2000,项目名称:lire,代码行数:16,代码来源:SurfDocumentBuilder.java

示例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;
}
 
开发者ID:fish2000,项目名称:lire,代码行数:15,代码来源:SurfDocumentBuilder.java

示例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());
        }
    }
 
开发者ID:fish2000,项目名称:lire,代码行数:10,代码来源:SurfMserTest.java


注:本文中的com.stromberglabs.jopensurf.Surf.getFreeOrientedInterestPoints方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。