plz help me in this question
1 回表示 (過去 30 日間)
古いコメントを表示
imnoise(I,'gaussian',0.1*5e-6); in the above line why it is 0.1*5e-6 is written.
2 件のコメント
John D'Errico
2017 年 7 月 21 日
編集済み: John D'Errico
2017 年 7 月 21 日
Why not just read the help for imnoise? There you will find a complete explanation of the parameters for imnoise. Instead, you want someone else to re-write the help for you here?
採用された回答
Star Strider
2017 年 7 月 21 日
My guess would be sloppy coding. That would evaluate to 5e-7.
2 件のコメント
Star Strider
2017 年 7 月 21 日
As I read it, it would be the mean, since it is the first argument after 'gaussian' (at least in R2017a).
If you are using an earlier release, you need to see the documentation for the imnoise function for your MATLAB version.
Type either of these in your Command Window:
doc imnoise
or if that does not work, type:
help imnoise
to get the documentation.
その他の回答 (2 件)
Image Analyst
2017 年 7 月 21 日
Because the programmer made a mistake, in my opinion, by not being explicit. According to the help:
J = imnoise(I,'gaussian',M,V) adds Gaussian white noise of mean m and variance v to the image I. The default is zero mean noise with 0.01 variance.
so it should take 2 numbers after 'gaussian', not one like they had. Perhaps they meant:
noisyImage = imnoise(I,'gaussian',0.1, 5e-6);
where there is a comma instead of a *, but who knows. You need to ask the programmer.
If they put just one number, the number would be the mean, not the variance. The variance would take on the default value of 0.01
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!