The TimedImage<(Of <(<'TColor, TDepth>)>)> type exposes the following properties.

Properties

 Public

 Protected
 Instance

 Static
 Declared

 Inherited
 XNA Framework Only

 .NET Compact Framework Only

 MemberDescription
Bitmap
The Get property provide a more efficient way to convert Image<Gray, Byte>, Image<Bgr, Byte> and Image<Bgra, Byte> into Bitmap such that the image data is shared with Bitmap. If you change the pixel value on the Bitmap, you change the pixel values on the Image object as well! For other types of image this property has the same effect as ToBitmap() Take extra caution not to use the Bitmap after the Image object is disposed The Set property convert the bitmap to this Image type.
(Inherited from Image<(Of <(<'TColor, TDepth>)>)>.)
Bytes
Get or Set an Array of bytes that represent the data in this array
(Inherited from CvArray<(Of <(<'TDepth>)>)>.)
Cols
The number of cols for this array
(Inherited from CvArray<(Of <(<'TDepth>)>)>.)
Data
Get or Set the data for this matrix. The Get function has O(1) complexity. The Set function make a copy of the data
(Inherited from Image<(Of <(<'TColor, TDepth>)>)>.)
Height
Get the height (#Rows) of the cvArray. If ROI is set, the height of the ROI
(Inherited from CvArray<(Of <(<'TDepth>)>)>.)
IsROISet
Indicates if the region of interest has been set
(Inherited from Image<(Of <(<'TColor, TDepth>)>)>.)
Item[([( Point])])
Get or Set the color in the location
(Inherited from Image<(Of <(<'TColor, TDepth>)>)>.)
Item[([( Int32])])
Get or Set the specific channel of the current image. For Get operation, a copy of the specific channel is returned. For Set operation, the specific channel is copied to this image.
(Inherited from Image<(Of <(<'TColor, TDepth>)>)>.)
Item[([( Int32, Int32])])
Get or Set the color in the rowth row (y direction) and columnth column (x direction)
(Inherited from Image<(Of <(<'TColor, TDepth>)>)>.)
ManagedArray
Get the underneath managed array
(Inherited from Image<(Of <(<'TColor, TDepth>)>)>.)
MIplImage
The IplImage structure
(Inherited from Image<(Of <(<'TColor, TDepth>)>)>.)
Norm
The norm of this Array
(Inherited from CvArray<(Of <(<'TDepth>)>)>.)
NumberOfChannels
Get the number of channels for this image
(Inherited from Image<(Of <(<'TColor, TDepth>)>)>.)
Ptr
The pointer to the internal structure
(Inherited from CvArray<(Of <(<'TDepth>)>)>.)
ROI
Get or Set the region of interest for this image. To clear the ROI, set it to System.Drawing.Rectangle.Empty
(Inherited from Image<(Of <(<'TColor, TDepth>)>)>.)
Rows
The number of rows for this array
(Inherited from CvArray<(Of <(<'TDepth>)>)>.)
SerializationCompressionRatio
Get or set the Compression Ratio for serialization. A number between 0 - 9. 0 means no compression at all, while 9 means best compression
(Inherited from CvArray<(Of <(<'TDepth>)>)>.)
Size
Get the size of the array
(Inherited from CvArray<(Of <(<'TDepth>)>)>.)
Timestamp
The time this image is captured
Trace
Sum of diagonal elements of the matrix
(Inherited from CvArray<(Of <(<'TDepth>)>)>.)
Width
Get the width (#Cols) of the cvArray. If ROI is set, the width of the ROI
(Inherited from CvArray<(Of <(<'TDepth>)>)>.)

See Also