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

org.openimaj.image.feature.local.keypoints.FloatKeypoint Maven / Gradle / Ivy

Go to download

Methods for the extraction of local features. Local features are descriptions of regions of images (SIFT, ...) selected by detectors (Difference of Gaussian, Harris, ...).

There is a newer version: 1.3.8
Show newest version
/**
 * Copyright (c) 2011, The University of Southampton and the individual contributors.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 *   * 	Redistributions of source code must retain the above copyright notice,
 * 	this list of conditions and the following disclaimer.
 *
 *   *	Redistributions in binary form must reproduce the above copyright notice,
 * 	this list of conditions and the following disclaimer in the documentation
 * 	and/or other materials provided with the distribution.
 *
 *   *	Neither the name of the University of Southampton nor the names of its
 * 	contributors may be used to endorse or promote products derived from this
 * 	software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
package org.openimaj.image.feature.local.keypoints;

import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.io.PrintWriter;
import java.io.Serializable;
import java.util.Arrays;
import java.util.List;
import java.util.Scanner;
import java.util.StringTokenizer;

import org.openimaj.feature.FloatFV;
import org.openimaj.feature.local.LocalFeature;
import org.openimaj.feature.local.list.MemoryLocalFeatureList;
import org.openimaj.io.VariableLength;
import org.openimaj.math.geometry.point.Point2d;
import org.openimaj.math.geometry.point.ScaleSpacePoint;

import Jama.Matrix;

/**
 * A local interest point with a location, scale, orientation and associated
 * feature. The feature is stored as an array of floats.
 * 
 * @author Jonathon Hare ([email protected])
 */
public class FloatKeypoint
		implements
		Serializable,
		ScaleSpacePoint,
		LocalFeature,
		VariableLength,
		Cloneable
{
	static final long serialVersionUID = 1234554345;

	/**
	 * Default length of standard SIFT features.
	 */
	private final static int DEFAULT_LENGTH = 128;

	/**
	 * keypoint feature descriptor (i.e. SIFT)
	 */
	public float[] vector;

	/**
	 * dominant orientation of keypoint
	 */
	public float ori;

	/**
	 * scale of keypoint
	 */
	public float scale;

	/**
	 * x-position of keypoint
	 */
	public float x;

	/**
	 * y-position of keypoint
	 */
	public float y;

	/**
	 * Construct with the default feature vector length for SIFT (128).
	 */
	public FloatKeypoint() {
		this.vector = new float[DEFAULT_LENGTH];
	}

	/**
	 * Construct with the given feature vector length.
	 * 
	 * @param length
	 *            the length of the feature vector
	 */
	public FloatKeypoint(int length) {
		if (length < 0)
			length = DEFAULT_LENGTH;
		this.vector = new float[length];
	}

	/**
	 * Construct with the given parameters.
	 * 
	 * @param x
	 *            the x-ordinate of the keypoint
	 * @param y
	 *            the y-ordinate of the keypoint
	 * @param ori
	 *            the orientation of the keypoint
	 * @param scale
	 *            the scale of the keypoint
	 * @param ivec
	 *            the feature vector of the keypoint
	 */
	public FloatKeypoint(float x, float y, float ori, float scale, float[] ivec) {
		this.x = x;
		this.y = y;
		this.ori = ori;
		this.scale = scale;
		this.vector = ivec;
	}

	/**
	 * Construct by copying from another {@link FloatKeypoint}
	 * 
	 * @param k
	 *            the {@link FloatKeypoint} to copy from
	 */
	public FloatKeypoint(FloatKeypoint k) {
		this(k.x, k.y, k.ori, k.scale, Arrays.copyOf(k.vector, k.vector.length));
	}

	/**
	 * Construct from a {@link Keypoint}.
	 * 
	 * @param k
	 */
	public FloatKeypoint(Keypoint k) {
		this.setLocation(k.getLocation());
		this.vector = new float[k.ivec.length];

		for (int i = 0; i < vector.length; i++) {
			vector[i] = k.ivec[i] + 128;
		}
	}

	@Override
	public Float getOrdinate(int dimension) {
		if (dimension == 0)
			return x;
		if (dimension == 1)
			return y;
		if (dimension == 2)
			return scale;
		return null;
	}

	@Override
	public int getDimensions() {
		return 3;
	}

	@Override
	public float getX() {
		return x;
	}

	@Override
	public float getY() {
		return y;
	}

	@Override
	public void setX(float x) {
		this.x = x;
	}

	@Override
	public void setY(float y) {
		this.y = y;
	}

	@Override
	public float getScale() {
		return scale;
	}

	@Override
	public void setScale(float scale) {
		this.scale = scale;
	}

	@Override
	public String toString() {
		return ("Keypoint(" + this.x + ", " + this.y + ", " + this.scale + ", " + this.ori + ")");
	}

	/**
	 * Test whether the location of this {@link FloatKeypoint} and another
	 * {@link FloatKeypoint} is the same.
	 * 
	 * @param obj
	 *            the other keypoint
	 * @return true if the locations match; false otherwise.
	 */
	public boolean locationEquals(Object obj) {
		if (obj instanceof FloatKeypoint) {
			final FloatKeypoint kobj = (FloatKeypoint) obj;

			if (kobj.x == x && kobj.y == y && kobj.scale == scale)
				return true;
		}

		return super.equals(obj);
	}

	@Override
	public boolean equals(Object obj) {
		if (obj instanceof FloatKeypoint) {
			final FloatKeypoint kobj = (FloatKeypoint) obj;

			if (kobj.x == x && kobj.y == y && kobj.scale == scale && Arrays.equals(vector, kobj.vector))
				return true;
		}

		return super.equals(obj);
	}

	@Override
	public int hashCode() {
		int hash = 1;
		hash = hash * 31 + Float.floatToIntBits(y);
		hash = hash * 31 + Float.floatToIntBits(x);
		hash = hash * 31 + Float.floatToIntBits(scale);
		return hash;
	}

	@Override
	public FloatKeypoint clone() {
		final FloatKeypoint clone = new FloatKeypoint();

		clone.x = x;
		clone.ori = ori;
		clone.y = y;
		clone.scale = scale;

		clone.vector = new float[vector.length];
		System.arraycopy(vector, 0, clone.vector, 0, vector.length);

		return clone;
	}

	@Override
	public void copyFrom(Point2d p) {
		setX(p.getX());
		setY(p.getY());
	}

	@Override
	public void writeBinary(DataOutput out) throws IOException {
		getLocation().writeBinary(out);
		out.writeInt(vector.length);
		for (int i = 0; i < vector.length; i++)
			out.writeFloat(this.vector[i]);
	}

	@Override
	public void writeASCII(PrintWriter out) throws IOException {
		/* Output data for the keypoint. */
		getLocation().writeASCII(out);
		for (int i = 0; i < vector.length; i++) {
			if (i > 0 && i % 20 == 0)
				out.println();
			out.print(" " + vector[i]);
		}
		out.println();
	}

	@Override
	public void readBinary(DataInput in) throws IOException {
		final KeypointLocation l = getLocation();
		l.readBinary(in);
		setLocation(l);

		vector = new float[in.readInt()];
		for (int i = 0; i < vector.length; i++)
			vector[i] = in.readFloat();
	}

	@Override
	public void readASCII(Scanner in) throws IOException {
		final KeypointLocation l = getLocation();
		l.readASCII(in);
		setLocation(l);

		int i = 0;
		while (i < vector.length) {
			final String line = in.nextLine();
			final StringTokenizer st = new StringTokenizer(line);

			while (st.hasMoreTokens()) {
				vector[i] = Float.parseFloat(st.nextToken());
				i++;
			}
		}
	}

	@Override
	public byte[] binaryHeader() {
		return "".getBytes();
	}

	@Override
	public String asciiHeader() {
		return "";
	}

	@Override
	public FloatFV getFeatureVector() {
		return new FloatFV(vector);
	}

	@Override
	public KeypointLocation getLocation() {
		return new KeypointLocation(x, y, ori, scale);
	}

	/**
	 * Set the location of this {@link FloatKeypoint}
	 * 
	 * @param location
	 *            the location
	 */
	public void setLocation(KeypointLocation location) {
		x = location.x;
		y = location.y;
		scale = location.scale;
		ori = location.orientation;
	}

	@Override
	public void translate(float x, float y) {
		this.x += x;
		this.y += y;
	}

	@Override
	public FloatKeypoint transform(Matrix transform) {
		float xt = (float) transform.get(0, 0) * getX() + (float) transform.get(0, 1) * getY()
				+ (float) transform.get(0, 2);
		float yt = (float) transform.get(1, 0) * getX() + (float) transform.get(1, 1) * getY()
				+ (float) transform.get(1, 2);
		final float zt = (float) transform.get(2, 0) * getX() + (float) transform.get(2, 1) * getY()
				+ (float) transform.get(2, 2);

		xt /= zt;
		yt /= zt;

		return new FloatKeypoint(xt, yt, this.ori, this.scale, this.vector.clone());
	}

	@Override
	public Point2d minus(Point2d a) {
		final FloatKeypoint kp = this.clone();
		kp.x = this.x - (int) a.getX();
		kp.y = this.y - (int) a.getY();
		return null;
	}

	@Override
	public void translate(Point2d v) {
		this.translate(v.getX(), v.getY());
	}

	@Override
	public Point2d copy() {
		return clone();
	}

	/**
	 * Convert a list of {@link Keypoint}s to {@link FloatKeypoint}s.
	 * 
	 * @param keys
	 *            the {@link Keypoint}s to convert.
	 * @return the converted {@link FloatKeypoint}s.
	 */
	public static MemoryLocalFeatureList convert(List keys) {
		final MemoryLocalFeatureList out = new MemoryLocalFeatureList();

		for (final Keypoint k : keys)
			out.add(new FloatKeypoint(k));

		return out;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy