Im trying to classify dental xray images in jpg format using SqueezeNet but there is error in the first input layer as it accepts only 227x227x3 whereas the jpg image data
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Im trying to classify dental xray images in jpg format using SqueezeNet but there is error in the first input layer as it accepts only 227x227x3 whereas the jpg image data of only 1 layer in gray. How to solve this issue kindly help?
0 Commenti
Risposte (1)
Rik
il 28 Ago 2023
The common strategy for using grayscale images in networks designed for color input, is to either replicate the images or to use only a single channel. Sometimes one of the channels is used for some sort of mask, but that depends on the actual project.
IM = uint8(randi([0 255],227,227,1)); % generate example image data
%option 1:
IM_replicated = repmat(IM,1,1,3);
size(IM_replicated)
%option 2:
IM_extended = cat(3,IM,uint8(zeros([size(IM) 2])));
size(IM_extended)
0 Commenti
Vedere anche
Categorie
Scopri di più su Image Data Workflows in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!