フィルターのクリア

Standard deviation per pixel in an image series

11 ビュー (過去 30 日間)
Bankim Chandra Yadav
Bankim Chandra Yadav 2018 年 5 月 1 日
コメント済み: Ameer Hamza 2018 年 5 月 1 日
Let's say I have 2 images of size 3x3. I want to store the standard deviation of each pixel in a new matrix of size 3x3.
So if I have k images of same size, then I want to find the standard deviation of k entries per pixel and store that in a new matrix.

採用された回答

Ameer Hamza
Ameer Hamza 2018 年 5 月 1 日
Save the images in a 3D array (say imageArray), such that imageArray(:,:,1) = Image1, imageArray(:,:,1) = Image2, ..., imageArray(:,:,k) = Imagek. Then you can calculate per pixel standard deviation using
std(imageArray, 3);
  2 件のコメント
Bankim Chandra Yadav
Bankim Chandra Yadav 2018 年 5 月 1 日
Simplistic answer. Thanks.
Ameer Hamza
Ameer Hamza 2018 年 5 月 1 日
You are welcome.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing and Computer Vision についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by