how can i make alexnet accept 277x277x1 images
Mostra commenti meno recenti
i got error in example TransferLearningUsingAlexNetExample Error using trainNetwork (line 140) The training images are of size 227x227x1 but the input layer expects images of size 227x227x3. my dataset 277X277x1
3 Commenti
SAQIB SHEIKH
il 2 Set 2019
you can use Software Faststone Image resizer
arun anoop m
il 17 Lug 2020
a=imread(' ');
l=alexnet;
a=imresize(a,[227 227]);
s=classify(l,a);
imshow(a);
try this.
Eline Geerits
il 4 Apr 2022
How can I apply this to an DataSet. I have abaout 4000 Images I have to resize so it would take way to long to do this for every Image indevidually.
Risposta accettata
Più risposte (2)
Atika Aftab
il 10 Feb 2020
0 voti
how can i make [224 224 1] img size ?
1 Commento
arun anoop m
il 17 Lug 2020
I hope
a=imread(' ');
a=imresize(a,[224 224]);
Ayshath Afra
il 2 Apr 2020
0 voti
The training images are of size 256x256x3 but the input layer expects images of size 224x224x3.
pls help me to solve this error
1 Commento
Michael Keeling
il 5 Giu 2020
Modificato: Michael Keeling
il 5 Giu 2020
You can make an augmented datastore of the images that resizes them auomatically, while leaving your raw images the same
Categorie
Scopri di più su Deep Learning Toolbox in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!