Example Overhead View

From BoofCV
Revision as of 11:59, 19 September 2015 by Peter (talk | contribs)
Jump to navigationJump to search

For some tasks (e.g. autonomous driving) detecting features and understanding the scene is difficult due to perspective distortion. An overhead orthogonal view of the scene can be created if the geometry between the camera and the ground plane is known. Each pixel in the overhead image will have a known size and its location relative to the camera is also known.

Example Code:

Concepts:

  • Perspective Distortion
  • Ground plane

Relevant Applets:

Related Examples:

Example Code

/**
 * Creates a synthetic overhead view from an image using the known ground plane.  This is commonly used for navigation
 * in man-made environments, such on roads or through hallways.  Objects which are not actually on the ground plane
 * will be heavily distorted in the overhead view.
 *
 * @author Peter Abeles
 */
public class ExampleOverheadView {
	public static void main( String args[] ) {
		BufferedImage input = UtilImageIO.loadImage("../data/applet/road/left01.png");

		MultiSpectral<ImageUInt8> imageRGB = ConvertBufferedImage.convertFromMulti(input, null,true, ImageUInt8.class);

		StereoParameters stereoParam = UtilIO.loadXML("../data/applet/road/stereo01.xml");
		Se3_F64 groundToLeft = UtilIO.loadXML("../data/applet/road/ground_to_left_01.xml");

		CreateSyntheticOverheadView<MultiSpectral<ImageUInt8>> generateOverhead =
				new CreateSyntheticOverheadViewMS<ImageUInt8>(TypeInterpolate.BILINEAR,3,ImageUInt8.class);

		// size of cells in the overhead image in world units
		double cellSize = 0.05;

		// You can use this to automatically select reasonable values for the overhead image
		SelectOverheadParameters selectMapSize = new SelectOverheadParameters(cellSize,20,0.5);
		selectMapSize.process(stereoParam.left,groundToLeft);

		int overheadWidth = selectMapSize.getOverheadWidth();
		int overheadHeight = selectMapSize.getOverheadHeight();

		MultiSpectral<ImageUInt8> overheadRGB =
				new MultiSpectral<ImageUInt8>(ImageUInt8.class,overheadWidth,overheadHeight,3);
		generateOverhead.configure(stereoParam.left,groundToLeft,
				selectMapSize.getCenterX(), selectMapSize.getCenterY(), cellSize,overheadRGB.width,overheadRGB.height);

		generateOverhead.process(imageRGB, overheadRGB);

		// note that the left/right values are swapped in the overhead image.  This is an artifact of the plane's
		// 2D coordinate system having +y pointing up, while images have +y pointing down.
		BufferedImage output = ConvertBufferedImage.convertTo(overheadRGB,null,true);

		ShowImages.showWindow(input,"Input Image",true);
		ShowImages.showWindow(output,"Overhead Image",true);
	}
}