Image edge to black
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
Anyone develop algorithm to change the outer pixel(edge) become full black ? like a frame.
Thanks
1 commentaire
Réponse acceptée
Image Analyst
le 21 Août 2012
How about
imageArray(1,:) = 0;
imageArray(end,:) = 0;
imageArray(:,1) = 0;
imageArray(:,end) = 0;
0 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!