boofcv.abst.geo.calibration.DetectSingleFiducialCalibration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of boofcv-geo Show documentation
Show all versions of boofcv-geo Show documentation
BoofCV is an open source Java library for real-time computer vision and robotics applications.
/*
* 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.abst.geo.calibration;
import boofcv.alg.distort.LensDistortionNarrowFOV;
import boofcv.alg.geo.calibration.CalibrationObservation;
import boofcv.struct.image.GrayF32;
import georegression.struct.point.Point2D_F64;
import org.jetbrains.annotations.Nullable;
import java.util.List;
/**
* Interface for extracting points from a planar calibration grid.
*
* @author Peter Abeles
*/
public interface DetectSingleFiducialCalibration {
/**
* Image processing for calibration target detection
*
* @param input Gray scale image containing calibration target
* @return true if target was detected and false if not
*/
boolean process( GrayF32 input );
/**
* Returns the set of detected points from the most recent call to {@link #process(GrayF32)}. Each
* time this function is invoked a new instance of the list and points is returned. No data reuse here.
*
* @return List of detected points in row major grid order.
*/
CalibrationObservation getDetectedPoints();
/**
* Returns the layout of the calibration points on the target
*
* @return List of calibration points
*/
List getLayout();
/**
* Explicitly handles lens distortion when detecting image features. If used, features will be found in
* undistorted pixel coordinates
*/
void setLensDistortion( @Nullable LensDistortionNarrowFOV distortion, int width, int height );
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy