how to Remove pixels at the marker locations from A binary image?
3 ビュー (過去 30 日間)
古いコメントを表示
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/154876/image.jpeg)
can any one give me an idea please.
help is much appreciated
thank you.
回答 (1 件)
Image Analyst
2014 年 1 月 9 日
編集済み: Image Analyst
2014 年 1 月 9 日
Just go down your list setting those pixels to false
for k = 1 : length(rows)
binaryImage(rows(k), columns(k)) = false;
end
where rows and columns are arrays with the locations of the red crosses.
11 件のコメント
Image Analyst
2014 年 1 月 20 日
I'm most likely not going to be able to carve enough time out of my day to do all that for you. Can't you find anyone else that you work with to help you?
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!