How to remove the extra unwanted white pixels from an image.
5 次查看(过去 30 天)
显示 更早的评论
I want to automatically remove the marked white pixels in attached Figure named as Picture 2. I have also attached an original image with name Picture1. Can anyone please help me in this. I will be very Thank Full to you.
0 个评论
采纳的回答
Image Analyst
2021-6-26
What is it that defines those pixels? How about if you just picked some column, and erased from there to the center of the image, like
[rows, columns, numberOfColorChannels] = size(binaryImage)
binaryImage(:, 50 : round(columns/2), :) = 0;
I don't know if you just want to pick 50 or some other value, basically manually by turning the axis tick marks on and looking at them, or if you can explain somehow how that column could be automatically chosen.
2 个评论
Image Analyst
2021-6-26
You went from column 50 to column 28, which means no columns were chosen. You really need to take this 2 hour course to learn how indexing is done:
What you should have done is
[rows, columns, numberOfColorChannels] = size(binaryImage)
% Erase from column 28 to middle of the image.
binaryImage(:, 28 : round(columns/2), :) = 0;
更多回答(1 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!