CvInvokecvSetImageCOI Method |
http://www.emgu.com
Sets the channel of interest to a given value. Value 0 means that all channels are selected, 1 means that the first channel is selected etc. If ROI is NULL and coi != 0, ROI is allocated.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static void cvSetImageCOI(
IntPtr image,
int coi
)
Public Shared Sub cvSetImageCOI (
image As IntPtr,
coi As Integer
)
public:
static void cvSetImageCOI(
IntPtr image,
int coi
)
static member cvSetImageCOI :
image : IntPtr *
coi : int -> unit
Parameters
- image
- Type: SystemIntPtr
Image header - coi
- Type: SystemInt32
Channel of interest starting from 1. If 0, the COI is unset.
See Also