how to Remove pixels at the marker locations from A binary image?
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens

can any one give me an idea please.
help is much appreciated
thank you.
Réponses (1)
Image Analyst
le 9 Jan 2014
Modifié(e) : Image Analyst
le 9 Jan 2014
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 commentaires
Image Analyst
le 20 Jan 2014
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?
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!