1 つのイメージを使用したネットワーク テスト
2 views (last 30 days)
Show older comments
を参考にセマンティックセグメンテーションを行っているのですが,1 つのイメージを使用したネットワーク テストを行う時の画像を指定することはできるのでしょうか.
0 Comments
Accepted Answer
Kenta
on 19 Jan 2020
こんにちは、はい、できます。readall関数で、テストイメージを全部取り出して、montageで全部を確認できます。
そして、readimaeg関数の2番目の引数で、何番目の画像を読み取るかを指定すると、自分のチェックしたい画像を読み込めるので、あとは、参考のURLの通りに実行すればよいです。
I=readall(imdsTest);
figure;montage(I)
I=readimage(imdsTest,2);
More Answers (0)
See Also
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!