Remove line object from the image
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens

I must remove this red part from the image. How can I do that in MATLAB, anyone has ideas? Please help :)
1 commentaire
Réponses (1)
KSSV
le 29 Mai 2018
Modifié(e) : KSSV
le 29 Mai 2018
I = imread('wrong_part.jpg') ;
[J,rect] = imcrop(I) ; % select the part you want to remove when image pops
x0 = round(rect(1)) ; x1 = x0+round(rect(3)) ;
y0 = round(rect(2)) ; y1 = y0+round(rect(4)) ;
x = x0:x1 ;
y = y0:y1 ;
[X,Y] = meshgrid(y,x) ;
I(X,Y,:) = 0 ;
0 commentaires
Voir également
Catégories
En savoir plus sur Install Products dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!