IImage interface

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 interface IImage : IDisposable, ICloneable
Public Interface IImage _
	Inherits IDisposable, ICloneable
public interface class IImage : IDisposable, 
	ICloneable

Members

         
 All Members  Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
Bitmap
Convert this image into Bitmap, when avaialbe, data is shared with this image.
Clone()()()()
Creates a new object that is a copy of the current instance.
(Inherited from ICloneable.)
Dispose()()()()
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from IDisposable.)
MinMax(array<Double>[]()[][]%, array<Double>[]()[][]%, array<Point>[]()[][]%, array<Point>[]()[][]%)
Returns the min / max location and values for the image
NumberOfChannels
Get the number of channels for this image
Ptr
Get the pointer to the unmanaged memory
Save(String)
Save the image to the specific fileName
Size
The size of this image
Split()()()()
Split current IImage into an array of gray scale images where each element in the array represent a single color channel of the original image

See Also