Deeplearning toolbox data input
2 ビュー (過去 30 日間)
古いコメントを表示
I have hyperspectral data cubes of 640*480*100. And want to use patches of my data 16*16*100 as an input for the deeplearning toolbox, but i can't seem to get to get it working. The toolbox only allows image formats, but saving the patches as images isn't possible due to the spectral dimension.
2 件のコメント
Cris LaPierre
2023 年 4 月 6 日
Could you be more specific? The Deep Learning Toolbox is a collection of functions, apps, and examples for designing, training, and analyzing deep learning networks. Which one of these are you having difficulty using?
採用された回答
Matt J
2023 年 4 月 6 日
編集済み: Matt J
2023 年 4 月 6 日
but i cant use .mat as an input
Yes, you can.
imds = imageDatastore(location,"ReadFcn",@load);
You also don't necessarily need to keep your input data in files. The input to trainNetwork could be a 16x16x100xN numeric array, assuming you're using a recent enough version of Matlab.
4 件のコメント
Matt J
2023 年 4 月 6 日
Incidentally also, you should probably look at randomPatchExtractionDatastore.
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!