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 (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public Image<Gray, TDepth> this[
int channel
] { get; set; } |
Visual Basic (Declaration) |
---|
Public Default Property Item ( _
channel As Integer _
) As Image(Of Gray, TDepth) |
Parameters
- channel
- Type: System..::.Int32
The channel to get from the current image, zero based index
Return Value
The specific channel of the current image
See Also