Reverse of Normalization

10 次查看(过去 30 天)
G is a mtrix of integers of size (128X128) i normalized it using this method:
Gnorm = (G - Gmin) ./ (Gmax) - Gmin); then used imhist: [P X]=imhist(Gnorm,72);
now i want to get the actual values of X found in G.
would you help me on this please? Thank you.

采纳的回答

Walter Roberson
Walter Roberson 2012-1-14
A simple bit of algebra...
Gorig = X * (Gmax - Gmin) + Gmin;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Read, Write, and Modify Image 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by