Create a new Image Map defined by the Rectangle area. The center (0.0, 0.0) of this map is defined by the center of the rectangle.

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Map(
	RectangleF area,
	PointF resolution,
	TColor color
)
Public Sub New ( _
	area As RectangleF, _
	resolution As PointF, _
	color As TColor _
)
public:
Map(
	RectangleF area, 
	PointF resolution, 
	TColor color
)

Parameters

area
RectangleF

[Missing <param name="area"/> documentation for "M:Emgu.CV.Map`2.#ctor(System.Drawing.RectangleF,System.Drawing.PointF,`0)"]

resolution
PointF
The resolution of x (y), (e.g. a value of 0.5 means each cell in the map is 0.5 unit in x (y) dimension)
color
TColor
The initial color of the map

See Also