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.2.1.1150 (2.2.1.1150)

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