ImageTColor, TDepthItem Property (Int32) |
http://www.emgu.com
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.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic Image<Gray, TDepth> this[
int channel
] { get; set; }
Public Default Property Item (
channel As Integer
) As Image(Of Gray, TDepth)
Get
Set
public:
property Image<Gray, TDepth>^ default[int channel] {
Image<Gray, TDepth>^ get (int channel);
void set (int channel, Image<Gray, TDepth>^ value);
}
member Item : Image<Gray, 'TDepth> with get, set
Parameters
- channel
- Type: SystemInt32
The channel to get from the current image, zero based index
Return Value
Type:
ImageGray,
TDepthThe specific channel of the current image
See Also