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

3 ビュー (過去 30 日間)
Hardit Singh
Hardit Singh 2019 年 12 月 13 日
回答済み: Image Analyst 2019 年 12 月 15 日
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;
  2 件のコメント
Hardit Singh
Hardit Singh 2019 年 12 月 14 日
Does not work.
Walter Roberson
Walter Roberson 2019 年 12 月 15 日
I assure you that it does work, with the exception of TIFF images that use IEEE floating point representation (these exist but are rare)

サインインしてコメントする。

その他の回答 (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 Center および File ExchangeImport, 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