suggest me suitable name for documentation?
7 ビュー (過去 30 日間)
古いコメントを表示
Consider an image f(x,y). I calculated the maximum and minimum intensity values of an image with the following operations:
k=max(f(x,y))-min(f(x,y));
p=max(f(x,y))-min(f(x,y));
m=k/p;
Suggest to me suitable name for k,p,m values.
For example: k is image global gradient etc.,
Thanks in advance.
0 件のコメント
回答 (1 件)
Image Analyst
2015 年 9 月 28 日
Note, it should be (y,x) not (x,y) since row is the first index in matrices. Anyway, k should be
k = max(f(:)) - min(f(:));
I'd call k "dynamic range". Since your p is the same as k, I'd also call p "dynamic range." And I'd call m "one" since that's what it is.
2 件のコメント
Image Analyst
2015 年 9 月 30 日
k is twice the amplitude.
p is twice the mean signal level.
m is a common formula for contrast.
参考
カテゴリ
Help Center および File Exchange で Digital Filter Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!