フィルターのクリア

PIXEL VALUE NORMALIZATION 0 and 1

2 ビュー (過去 30 日間)
Serife Kaba
Serife Kaba 2021 年 12 月 20 日
編集済み: Serife Kaba 2021 年 12 月 21 日
Dear Sir/Madam,
I have DICOM images taken from the angiography device and I labeled my images using Adobe Photoshop, then painted the background with black and the part I labeled with white.
I exported the labelled images in png format from photoshop.
However, the images appearing in black and white are in RGB format, although I converted the image to binary with the MATLAB program, all numbers appear as 2 in the pixel range.
How can I make 0 and 1 pixel interval for binary images ? I would be grateful if you can help me
Best regards
Şerife Kaba
  2 件のコメント
Matt J
Matt J 2021 年 12 月 20 日
I suggest attaching the RGB image so that we can demonstrate.
Serife Kaba
Serife Kaba 2021 年 12 月 21 日
Thank you so much . I attached the image below which taken from photoshop (RGB image )
Best regards

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

採用された回答

Walter Roberson
Walter Roberson 2021 年 12 月 21 日
Although you posted a PNG image, we can tell that at some point the image had been saved in jpeg format, which has resulted in some boundary pixels being blurred.
IM47 = imread('IM-0001-0047.png');
BW47 = imbinarize(rgb2gray(IM47));
Now BW47 will be the binary labels that you need.
  1 件のコメント
Serife Kaba
Serife Kaba 2021 年 12 月 21 日
編集済み: Serife Kaba 2021 年 12 月 21 日
Dear Walter,
Thank you so much 🙏
Best regards

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

その他の回答 (1 件)

yanqi liu
yanqi liu 2021 年 12 月 21 日
yes,sir,may be the image file save be Photoshop get rgb format,so we read it to logical,such as 0 and 1 value
may be use
im2uint8(your_logical_label_matrix)
make the value to 255(white)、0(black)
and use
classNames = ["target","background"];
labelIDs = [255 0];
to generate pixelLabelDatastore
  1 件のコメント
Serife Kaba
Serife Kaba 2021 年 12 月 21 日
Thank you for your answer , i will check

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

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by