Hi,
Can anyone please help me on how to normalize a set of greyscale images using FME ? (Transforming the scale range of radiometric values to the [0,1] interval)
thank you very much
Hi,
Can anyone please help me on how to normalize a set of greyscale images using FME ? (Transforming the scale range of radiometric values to the [0,1] interval)
thank you very much
Best answer by tomf
To normalise into [0,1] you can use the expression:
( x - x_min ) / (x_range)
so for your case:
(A[0]-@Value(A:band0.min))/@Value(A:band0.range)
This output from that is now normalised [0,1]
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.