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

boofcv.abst.fiducial.BaseSquare_FiducialDetector Maven / Gradle / Ivy

Go to download

BoofCV is an open source Java library for real-time computer vision and robotics applications.

There is a newer version: 0.26
Show newest version
/*
 * Copyright (c) 2011-2016, 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.abst.fiducial;

import boofcv.alg.fiducial.square.BaseDetectFiducialSquare;
import boofcv.alg.fiducial.square.StabilitySquareFiducialEstimate;
import boofcv.struct.calib.IntrinsicParameters;
import boofcv.struct.image.ImageGray;
import boofcv.struct.image.ImageType;
import georegression.struct.se.Se3_F64;
import georegression.struct.shapes.Quadrilateral_F64;

/**
 * Wrapper around {@link BaseDetectFiducialSquare} for {@link FiducialDetector}
 *
 * @author Peter Abeles
 */
public abstract class BaseSquare_FiducialDetector>
	implements FiducialDetector
{
	Detector alg;

	StabilitySquareFiducialEstimate stability;

	ImageType type;

	public BaseSquare_FiducialDetector(Detector alg) {
		this.alg = alg;
		this.type = ImageType.single(alg.getInputType());
	}

	@Override
	public void detect(T input) {
		alg.process(input);
	}

	@Override
	public void setIntrinsic(IntrinsicParameters intrinsic) {
		alg.configure(intrinsic,true);
		stability = new StabilitySquareFiducialEstimate(alg.getPoseEstimator());
	}

	@Override
	public int totalFound() {
		return alg.getFound().size;
	}

	@Override
	public void getFiducialToCamera(int which, Se3_F64 fiducialToCamera) {
		fiducialToCamera.set(alg.getFound().get(which).targetToSensor);
	}

	@Override
	public long getId( int which ) {
		return alg.getFound().get(which).id;
	}

	@Override
	public ImageType getInputType() {
		return type;
	}

	@Override
	public boolean computeStability(int which, double disturbance, FiducialStability results) {
		Quadrilateral_F64 quad = alg.getFound().get(which).location;
		if( !this.stability.process(disturbance, quad) ) {
			return false;
		}
		results.location = stability.getLocationStability();
		results.orientation = stability.getOrientationStability();
		return true;
	}

	@Override
	public boolean isSupportedID() {
		return true;
	}

	@Override
	public boolean isSupportedPose() {
		return true;
	}

	@Override
	public boolean isSizeKnown() {
		return true;
	}

	public Detector getAlgorithm() {
		return alg;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy