I'm using RegionBinarize on a number of images, but occasionally it does nothing.
These image always have
ColorSpace->ColorProfileData[<>,Description->sRGB IEC61966-2.1,DeviceColorSpace->RGB,IndependentColorSpace->XYZ]
Why does RegionBinarize not operate on this image?
And,/or how can I convert it to a image with ColorSpace-> RGB?
ImageColorConvert [img, "RGB"] does not do the job.
This will work,
ColorConvert[ ColorConvert[img, "XYZ"], "RGB"]
but why?
I will attach a small image here, the sequence of tests I've performed.
Thanks in advance,
Ed Komp