필터 지우기
필터 지우기

suggest me suitable name for documentation?

조회 수: 1 (최근 30일)
somasekar jalari
somasekar jalari 2015년 9월 28일
댓글: Image Analyst 2015년 9월 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.

답변 (1개)

Image Analyst
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
somasekar jalari
somasekar jalari 2015년 9월 30일
편집: Image Analyst 2015년 9월 30일
Thank u sir for response. sorry for small correction, in P. Now,
p=max(f(x,y))+min(f(x,y));
k=max(f(x,y))-min(f(x,y));
m=k/p;
now suggest me suitable title for p and m sir. but k is 'dynamic range' looking forward your reply.
thanks in advance.
Image Analyst
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 CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by