How can I automatically crop all images?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Parham Babakhani Dehkordi
le 3 Mai 2016
Commenté : Walter Roberson
le 9 Mai 2016
Hello, I have 1080 images in one folder. All the images are the same in terms of pixel location. so, I want to automatically crop all 1080 in one code. for my first image I know that It must be cropped as
I=imcrop(I,[0 215 2500 255]);
Thus I know a rectangular with xmin,ymin,weidth, and height. I do not know how I can apply to all 1080 images (frames) this condition.any help would be appreciated.
0 commentaires
Réponse acceptée
Plus de réponses (1)
Parham Babakhani Dehkordi
le 9 Mai 2016
1 commentaire
Walter Roberson
le 9 Mai 2016
You can use mean() to get the per-row average. If you only need it for some columns you can extract them
mean(YourImage(:,[1 2 250])
Voir également
Catégories
En savoir plus sur Image Processing Toolbox 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!