I want to change the black background of my image into white.

18 ビュー (過去 30 日間)
Keerthi  D
Keerthi D 2020 年 6 月 29 日
コメント済み: Image Analyst 2020 年 8 月 23 日
rgbImage=imread('C:\Users\KeerthiDev\Desktop\tomato_dataset\Tomato_late_blight_water_mold\late130.jpg');
%figure,imshow(rgbImage, []);
rgbImage = imadjust(rgbImage,stretchlim(rgbImage),[]);
rgbImage = imreducehaze(rgbImage);
figure,imshow(rgbImage);
grayImage = rgb2gray(rgbImage);
figure,imshow(grayImage, []);
hFH = imfreehand();
binaryImage = hFH.createMask();
xy = hFH.getPosition;
blackMaskedImage = grayImage;
blackMaskedImage(~binaryImage) = 0;
maskedRgbImage = bsxfun(@times,rgbImage,cast(binaryImage, 'like',rgbImage));
figure,imshow(maskedRgbImage);
after runing this code to i got the image as shown below
I want to only change this black background to white color (without any other change.)

採用された回答

Image Analyst
Image Analyst 2020 年 6 月 29 日
Try this:
rgbImage = imread('image.png');
subplot(2, 2, 1);
imshow(rgbImage);
mask = all(rgbImage == 0, 3);
% Take the largest blob
mask = bwareafilt(mask, 1);
subplot(2, 2, 2);
imshow(mask);
maskedRgbImage = rgbImage + uint8(255 * repmat(mask, [1, 1, 3]));
subplot(2, 2, 3);
imshow(maskedRgbImage);
  12 件のコメント
Keerthi  D
Keerthi D 2020 年 8 月 23 日
I didn't get
Image Analyst
Image Analyst 2020 年 8 月 23 日
Well, keep trying. I don't have that paper coded up myself, so you'll have to do it. But it looks like it should remove your shadows.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Data Workflows についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by