필터 지우기
필터 지우기

i want to normalize these values

조회 수: 1 (최근 30일)
vipul utsav
vipul utsav 2013년 3월 22일
i have mean of different images 80,95,102,108,123 then i want to normalize these values?
how i can i do this?

답변 (1개)

Albert
Albert 2013년 3월 22일
Normalization is a quite abstract concept, however assuming what you want is to rank (transform to the [0,1] interval): just subtract the minimum value to them and then divide by the maximim value minus the minimum.
(v - min(v))/(max(v)-min(v))

카테고리

Help CenterFile Exchange에서 Geometric Transformation and Image Registration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by