conversion of image into 8 x 8 matrix
6 ビュー (過去 30 日間)
古いコメントを表示
I have one image file.
Then how to convert image into 8 x 8 matrix and 16 x 16 matrix
0 件のコメント
採用された回答
KALYAN ACHARJYA
2019 年 2 月 4 日
編集済み: KALYAN ACHARJYA
2019 年 2 月 4 日
Assuming you have gray scale image, say I, for 8x8
result_image=imresize(I,[8 8])
and for 4x4
result_image=imresize(I,[4 4])
If you are talking about sliding window, look here
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Processing Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!