adding noise to images

3 ビュー (過去 30 日間)
Kamyar Mazarei
Kamyar Mazarei 2021 年 4 月 15 日
編集済み: David Hill 2021 年 4 月 15 日
hi
i need to add x% noise ONLY to black areas of my image (image is grayscale) so x% of the black areas be replaced with white (changing 0 to 255)

回答 (1 件)

David Hill
David Hill 2021 年 4 月 15 日
編集済み: David Hill 2021 年 4 月 15 日
black=find(image==0);
white=randperm(length(black),floor(x/100*length(black)));
image(white)=uint8(255);
  2 件のコメント
Kamyar Mazarei
Kamyar Mazarei 2021 年 4 月 15 日
編集済み: Kamyar Mazarei 2021 年 4 月 15 日
thanks for the reply
but it works only to a small part of the image
like if i make x=100 it will remove only a small part of the image
the nosie isnt being added to the whole image
can you hlep please
thank you
David Hill
David Hill 2021 年 4 月 15 日
編集済み: David Hill 2021 年 4 月 15 日
You could put in a range. My guess is that you think it is black but is not (==0).
black=find(image<10);%change range until you are satisfied.

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

カテゴリ

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