about the inbuild image in matlab
3 ビュー (過去 30 日間)
古いコメントを表示
1) can you say any inbuild 256*256 image in matlab?
2) how can i check whether that image is 256*256 via matlab code ?
0 件のコメント
採用された回答
Rik
2020 年 6 月 16 日
The default image that is built in to the image function is 64*64. Other example images (like cameraman.tif) are 256*256.
You can check the image size just like every other array:
if size(IM,1)==256 && size(IM,2)==256
disp('256*256 image')
end
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Segmentation and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!