mu and sigma for every pixel
4 ビュー (過去 30 日間)
古いコメントを表示
how to calculate mu and sigma for every pixel of a frame of a video or help me in using evfit for this situation
0 件のコメント
採用された回答
Image Analyst
2012 年 5 月 29 日
mu is the pixel value. sigma is zero.
mu = mean(rgbImage(row, column, colorChannel)); % Same as the pixel value.
sigma = std(rgbImage(row, column, colorChannel)); % This will be zero since it's just one value.
I never heard of evfit. You can reword your question if you didn't fully explain the situation the first time.
1 件のコメント
Image Analyst
2012 年 6 月 1 日
You accepted? Do you realize that the code above is basically a joke and was just meant to prod you into a better, more accurate description of what you really need?
その他の回答 (1 件)
Tom Lane
2012 年 6 月 1 日
I similarly don't understand, but if your video is a 3-D array with V(i,j,:) representing pixel (i,j) for all frames, then this should do it:
params = evfit(squeeze(V(i,j,:)))
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!