how to Remove pixels at the marker locations from A binary image?
1 次查看(过去 30 天)
显示 更早的评论
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!