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


Java DocumentBuilder.FIELD_NAME_SURF属性代码示例

本文整理汇总了Java中net.semanticmetadata.lire.DocumentBuilder.FIELD_NAME_SURF属性的典型用法代码示例。如果您正苦于以下问题:Java DocumentBuilder.FIELD_NAME_SURF属性的具体用法?Java DocumentBuilder.FIELD_NAME_SURF怎么用?Java DocumentBuilder.FIELD_NAME_SURF使用的例子?那么恭喜您, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在net.semanticmetadata.lire.DocumentBuilder的用法示例。


在下文中一共展示了DocumentBuilder.FIELD_NAME_SURF属性的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: createDescriptorFields

@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,代码行数:15,代码来源:SurfDocumentBuilder.java

示例2: init

private void init() {
    localFeatureFieldName = DocumentBuilder.FIELD_NAME_SURF;
    visualWordsFieldName = DocumentBuilder.FIELD_NAME_SURF_VISUAL_WORDS;
    localFeatureHistFieldName = DocumentBuilder.FIELD_NAME_SURF_LOCAL_FEATURE_HISTOGRAM;
    clusterFile = "./clusters-surf.dat";
}
 
开发者ID:fish2000,项目名称:lire,代码行数:6,代码来源:SurfFeatureHistogramBuilder.java

示例3: getFieldName

@Override
public String getFieldName() {
    return DocumentBuilder.FIELD_NAME_SURF;
}
 
开发者ID:fish2000,项目名称:lire,代码行数:4,代码来源:SurfFeature.java


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