Click or drag to resize

VectorOfRect Class

http://www.emgu.com
Wrapped class of the C++ standard vector of Rect.
Inheritance Hierarchy

Namespace:  Emgu.CV.Util
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
[SerializableAttribute]
public class VectorOfRect : UnmanagedObject, 
	IInputOutputArray, IInputArray, IDisposable, IOutputArray, IInputArrayOfArrays, 
	IOutputArrayOfArrays, ISerializable

The VectorOfRect type exposes the following members.

Constructors
  NameDescription
Public methodVectorOfRect
Create an empty standard vector of Rect
Public methodVectorOfRect(Rectangle)
Create an standard vector of Rect with the initial values
Public methodVectorOfRect(Int32)
Create an standard vector of Rect of the specific size
Public methodVectorOfRect(SerializationInfo, StreamingContext)
Constructor used to deserialize runtime serialized object
Top
Properties
  NameDescription
Public propertyItem
Get the item in the specific index
Public propertyPtr
Pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Public propertySize
Get the size of the vector
Public propertyStatic memberSizeOfItemInBytes
The size of the item in this Vector, counted as size in bytes.
Public propertyStartAddress
The pointer to the first element on the vector. In case of an empty vector, IntPtr.Zero will be returned.
Top
Methods
  NameDescription
Public methodClear
Clear the vector
Public methodDispose
The dispose function that implements IDisposable interface
(Inherited from DisposableObject.)
Protected methodDisposeObject
Release the standard vector
(Overrides DisposableObjectDisposeObject.)
Public methodEquals (Inherited from Object.)
Protected methodFinalize
Destructor
(Inherited from DisposableObject.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetInputArray
Get the pointer to cv::_InputArray
Public methodGetInputOutputArray
Get the pointer to cv::_InputOutputArray
Public methodGetObjectData
A function used for runtime serialization of the object
Public methodGetOutputArray
Get the pointer to cv::_OutputArray
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodPush(Rectangle)
Push an array of value into the standard vector
Public methodPush(VectorOfRect)
Push multiple values from the other vector into this vector
Protected methodReleaseManagedResources
Release the managed resources. This function will be called during the disposal of the current object. override ride this function if you need to call the Dispose() function on any managed IDisposable object created by the current object
(Inherited from DisposableObject.)
Public methodToArray
Convert the standard vector to an array of Rect
Public methodToString (Inherited from Object.)
Top
Fields
  NameDescription
Protected field_ptr
A pointer to the unmanaged object
(Inherited from UnmanagedObject.)
Top
Extension Methods
  NameDescription
Public Extension MethodForEachDuplicateChannel(ActionIInputArray, Int32)Overloaded.
Apply converter and compute result for each channel of the image, for single channel image, apply converter directly, for multiple channel image, make a copy of each channel to a temperary image and apply the convertor
(Defined by IInputArrayExtensions.)
Public Extension MethodForEachDuplicateChannelTReturn(FuncIInputArray, Int32, TReturn)Overloaded.
Apply converter and compute result for each channel of the image, for single channel image, apply converter directly, for multiple channel image, make a copy of each channel to a temperary image and apply the convertor
(Defined by IInputArrayExtensions.)
Public Extension MethodIsUmat
Determines whether the specified input array is umat.
(Defined by IInputArrayExtensions.)
Top
See Also