How to convert a grey-scale image into a reverse binary image

3 次查看(过去 30 天)
cup.jpgI have images like the one shown above and I want to convert the image to a binary image where the black parts are white and the rest of the image is black. How would I approach solving this problem?

采纳的回答

Walter Roberson
Walter Roberson 2019-12-13
Rbin = YourImage <= 42;

更多回答(1 个)

Image Analyst
Image Analyst 2019-12-15
Try this:
grayImage = 255 - grayImage; % Assuming your image is uint8. Use 65535 if it's uint16.

类别

Help CenterFile Exchange 中查找有关 Import, Export, and Conversion 的更多信息

产品


版本

R2016b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by