I am new to EmguCV. I want to convert an rgb image into gray scale. For the conversion I have used the code
Image grayImage = ColordImage.Co
One simple way is to pass BitMap of color image in the constructor;
Image inputImage = //your original bgr image Image result = new Image(inputImage.Bitmap);