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 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
回答 (1 件)
Rik
2023 年 8 月 28 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Image Data Workflows についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!