Difference between revisions of "Example Fiducial Square Binary"

From BoofCV
Jump to navigationJump to search
(Created page with "<center> <gallery widths=280px heights=240px> file:Example_fiducial_square_binary.jpg | Rendered 3D flat squares on top of fiducials </gallery> </center> Demonstration how to...")
 
m
Line 8: Line 8:


Example Code:
Example Code:
* [https://github.com/lessthanoptimal/BoofCV/blob/v0.18/examples/src/boofcv/examples/fiducial/ExampleFiducialImage.java ExampleFiducialImage.java]
* [https://github.com/lessthanoptimal/BoofCV/blob/v0.18/examples/src/boofcv/examples/fiducial/ExampleFiducialNumber.java ExampleFiducialNumber.java]


Concepts:
Concepts:

Revision as of 16:48, 15 September 2014

Demonstration how to detect square binary fiducials. Square binary fiducials encode a pattern in the fiducial's center which can describe up to 4096 unique targets.

Example Code:

Concepts:

  • Fiducials
  • Pose estimation

Relevant Examples/Tutorials:

Relevant Applets:

Example Code

/**
 * Detects square binary fiducials inside an image, writes out there pose, and visualizes a virtual flat cube
 * above them in the input image.
 *
 * @author Peter Abeles
 */
public class ExampleFiducialNumber {
	public static void main(String[] args) {

		String directory = "../data/applet/fiducial/binary/";

		// load the lens distortion parameters and the input image
		IntrinsicParameters param = UtilIO.loadXML(directory + "intrinsic.xml");
		BufferedImage input = UtilImageIO.loadImage(directory + "image0000.jpg");
//		BufferedImage input = UtilImageIO.loadImage(directory + "image0001.jpg");
//		BufferedImage input = UtilImageIO.loadImage(directory + "image0002.jpg");
		ImageFloat32 original = ConvertBufferedImage.convertFrom(input,true, ImageType.single(ImageFloat32.class));

		// Detect the fiducial
		FiducialDetector<ImageFloat32> detector = FactoryFiducial.
				squareBinaryRobust(new ConfigFiducialBinary(0.1), 6, ImageFloat32.class);
//				squareBinaryFast(new ConfigFiducialBinary(0.1),100,ImageFloat32.class);

		detector.setIntrinsic(param);

		detector.detect(original);

		// print the results
		Graphics2D g2 = input.createGraphics();
		Se3_F64 targetToSensor = new Se3_F64();
		for (int i = 0; i < detector.totalFound(); i++) {
			System.out.println("Target ID = "+detector.getId(i));
			detector.getFiducialToWorld(i, targetToSensor);
			System.out.println("Location:");
			System.out.println(targetToSensor);

			VisualizeFiducial.drawCube(targetToSensor,param,0.1,g2);
		}

		ShowImages.showWindow(input,"Fiducials");

	}
}