Info
この質問は閉じられています。 編集または回答するには再度開いてください。
I have calculated fractional value of each image in an image array ,but how to calculate average of all the fractional values of an image array using matlab.
1 回表示 (過去 30 日間)
古いコメントを表示
I have calculated fractional value of each image in an image array ,but how to calculate average of all fractional values of an image array .
0 件のコメント
回答 (1 件)
Guillaume
2017 年 7 月 11 日
I don't know what fractional value of an image mean. To calculate the average of an array:
mean(yourarray(:))
or if you have the processing toolbox and your image is greyscale
mean2(yourarray)
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!