All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.visenze.visearch.ImageResult Maven / Gradle / Ivy

There is a newer version: 1.14.5
Show newest version
package com.visenze.visearch;

import java.util.Map;

public class ImageResult {

    private final String imName;
    private final Map metadata;
    private final Float score;

    public ImageResult(String imName, Map metadata, Float score) {
        this.imName = imName;
        this.metadata = metadata;
        this.score = score;
    }

    public String getImName() {
        return imName;
    }

    public Map getMetadata() {
        return metadata;
    }

    public Float getScore() {
        return score;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy