Hi! I want to create a binary image from a yuv image. Before I do this with rgb image with this code:
IplImage imgThreshold = cvCreateImage(cvGetSize(img), 8, 1);
cvInRangeS(img, rgba_min, rgba_max, imgThreshold);
cvSmooth(imgThreshold, imgThreshold, CV_MEDIAN, 15);
How can i create theshold image from yuv image?
Thank you!