
plugins.nherve.toolbox.image.feature.signature.WeightedSparseVectorSignature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of toolbox Show documentation
Show all versions of toolbox Show documentation
Some utility classes, independent of any library
The newest version!
package plugins.nherve.toolbox.image.feature.signature;
public class WeightedSparseVectorSignature extends SparseVectorSignature implements WeightedVectorSignature {
private double weight;
public WeightedSparseVectorSignature(int size) {
super(size);
}
@Override
public double getWeight() {
return weight;
}
public WeightedSparseVectorSignature setWeight(double weight) {
this.weight = weight;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy