[This is preliminary documentation and is subject to change.]

Returns number of rows (CvSize::height) and number of columns (CvSize::width) of the input matrix or image. In case of image the size of ROI is returned.

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

Syntax

         
 C#  Visual Basic  Visual C++ 
public static Size cvGetSize(
	IntPtr arr
)
Public Shared Function cvGetSize ( _
	arr As IntPtr _
) As Size
public:
static Size cvGetSize(
	IntPtr arr
)

Parameters

arr
IntPtr
array header

Return Value

number of rows (CvSize::height) and number of columns (CvSize::width) of the input matrix or image. In case of image the size of ROI is returned.

See Also