ImageTColor, TDepthGetSubRect Method |
http://www.emgu.com
Get a subimage which image data is shared with the current image.
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic Image<TColor, TDepth> GetSubRect(
Rectangle rect
)
Public Function GetSubRect (
rect As Rectangle
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ GetSubRect(
Rectangle rect
)
member GetSubRect :
rect : Rectangle -> Image<'TColor, 'TDepth>
Parameters
- rect
- Type: System.DrawingRectangle
The rectangle area of the sub-image
Return Value
Type:
ImageTColor,
TDepthA subimage which image data is shared with the current image
See Also