7*7 average
1 回表示 (過去 30 日間)
古いコメントを表示
How can we find average of matrix, considering a 7 by 7 matrix in an image????
1 件のコメント
Guillaume
2019 年 1 月 29 日
You'll have to be clearer about what you want. Providing an example of input and desired output really helps. What does considering a 7 by 7 matrix in an image mean?
回答 (1 件)
Matt J
2019 年 1 月 29 日
編集済み: Matt J
2019 年 1 月 29 日
If you want a 7x7 sliding window, you would use convolution
out=conv2(yourImage,ones(7)/49,'valid');
If instead you want to decompose your image into non-overlapping 7x7 tiles, then I would recommend sepblockfun (Download).
out=sepblockfun(yourImage,[7,7],'mean');
4 件のコメント
Guillaume
2019 年 1 月 30 日
As Matt wrote, "If you want a 7x7 sliding window, you would use convolution" and he gave you the code.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!