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

boofcv.struct.packed.PackedArrayPoint2D_I32 Maven / Gradle / Ivy

/*
 * Copyright (c) 2021, Peter Abeles. All Rights Reserved.
 *
 * This file is part of BoofCV (http://boofcv.org).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package boofcv.struct.packed;

import boofcv.misc.BoofLambdas;
import boofcv.struct.PackedArray;
import georegression.struct.point.Point2D_I32;
import org.ddogleg.struct.DogArray_I32;

/**
 * Packed array of {@link Point2D_I32}. Internally the point is stored in an interleaved format.
 *
 * @author Peter Abeles
 */
public class PackedArrayPoint2D_I32 implements PackedArray {
	private static final int DOF = 2;

	// Stores tuple in a single continuous array
	public final DogArray_I32 array;
	// tuple that the result is temporarily written to
	public final Point2D_I32 temp = new Point2D_I32();

	// Number of tuples stored in the array
	protected int numElements;

	public PackedArrayPoint2D_I32() {
		array = new DogArray_I32();
		array.resize(0);
	}

	@Override public void reset() {
		numElements = 0;
		array.reset();
	}

	@Override public void reserve( int numTuples ) {
		array.reserve(numTuples*2);
	}

	@Override public void append( Point2D_I32 element ) {
		array.add(element.x);
		array.add(element.y);

		numElements++;
	}

	@Override public Point2D_I32 getTemp( int index ) {
		temp.x = array.data[index*2];
		temp.y = array.data[index*2+1];

		return temp;
	}

	@Override public void getCopy( int index, Point2D_I32 dst ) {
		dst.x = array.data[index*2];
		dst.y = array.data[index*2+1];
	}

	@Override public void copy( Point2D_I32 src, Point2D_I32 dst ) {
		dst.setTo(src);
	}

	@Override public int size() {
		return numElements;
	}

	@Override public Class getElementType() {
		return Point2D_I32.class;
	}

	@Override public void forIdx( int idx0, int idx1, BoofLambdas.ProcessIndex op ) {
		int pointIndex = idx0;
		idx0 *= DOF;
		idx1 *= DOF;
		for (int i = idx0; i < idx1; i += DOF) {
			temp.x = array.data[i];
			temp.y = array.data[i+1];
			op.process(pointIndex++, temp);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy