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

plugins.nherve.toolbox.image.feature.signature.WeightedSparseVectorSignature Maven / Gradle / Ivy

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