How to find out the image actual coordinate value from the normalized image value?

1 view (last 30 days)
Hi, For example, I have a 500*500 size of image, but I normalized the range of [0 1], then how to find the image actual coordinate value from the normalized image value
  4 Comments

Sign in to comment.

Accepted Answer

Walter Roberson
Walter Roberson on 14 Feb 2018
If you normalized by using
min_value = min(data(:));
max_value = max(data(:));
normalized = (data - min_value) ./ (max_value - min_value)
then
de_normalized = cast(normalized .* (max_value - min_value) + min_value, class(data));

More Answers (1)

MURIUNGI ISAAC
MURIUNGI ISAAC on 14 Feb 2018
Edited: Walter Roberson on 14 Feb 2018
3D Face Recognition System V 4.3: A Hypride Technique Code For 3D Face Recognition System (Last Update)
We present a novel 3D face recognition approach based on geometric invariants introduced by Elad and Kimmel. The key idea of the proposed algorithm is a representation of the facial surface, invariant to isometric deformations, such as those resulting from different expressions and postures of the face. The obtained geometric invariants allow mapping 2D facial texture images into special images that incorporate the 3D geometry of the face. These signature images are then decomposed into their principal components. The result is an efficient and accurate face recognition algorithm that is robust to facial expressions. kindly get a copy here; https://jvz8.com/c/975291/132485 and thank me later

Community Treasure Hunt

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

Start Hunting!