How can i convert YCBCR image to binary image.
3 views (last 30 days)
Show older comments
Sarmad Paracha
on 28 Oct 2018
Commented: Image Analyst
on 30 Oct 2018
I am making a project using image processing and i need to convert the rgb image to YCBCR and then convert it to binary image.
0 Comments
Accepted Answer
Image Analyst
on 28 Oct 2018
There are functions rgb2ycbcr() and imbinarize().
7 Comments
Image Analyst
on 30 Oct 2018
imbinarize() works with gray scale images. "coins.png" is a gray scale image while "1.tif" is NOT.
Note how you tried to binarize YCBCR, a multiband image, while I did not. I binarized just the Y, Cb, or Cr channels alone, which are grayscale. That is why your code did not work while mine did.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!