How can we find average of matrix, considering a 7 by 7 matrix in an image????

1 件のコメント

Guillaume
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?
Doesn't the mean function or the mean2 (requires image processing toolbox) function work for what you want? They work on any size matrix, including 7x7 ones.

サインインしてコメントする。

回答 (1 件)

Matt J
Matt J 2019 年 1 月 29 日
編集済み: Matt J 2019 年 1 月 29 日

0 投票

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 件のコメント

Walter Roberson
Walter Roberson 2019 年 1 月 29 日
filter2 can be used instead of conv2. There are some differences in internal optimization in some cases. conv2 flips the mask compared to filter2 .
viswanath reddy
viswanath reddy 2019 年 1 月 30 日
i want to calculate mean for every pixel by moving the mask throughout the image starting as shown
Matt J
Matt J 2019 年 1 月 30 日
OK. But your question has already been answered (so please Accept-click).
Guillaume
Guillaume 2019 年 1 月 30 日
As Matt wrote, "If you want a 7x7 sliding window, you would use convolution" and he gave you the code.

サインインしてコメントする。

カテゴリ

ヘルプ センター および File ExchangeGeometric Transformation and Image Registration についてさらに検索

質問済み:

2019 年 1 月 29 日

コメント済み:

2019 年 1 月 30 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by