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!