- Fri Jan 20, 2006 11:19 pm
#112280
How do we do normalization in weight values:
Example 1: 50, 50 OR 7,7 OR 123,123 ... means 50% , 50%
Example 2: 50, 150 OR 8, 24 OR 42, 126 ... means %25, %75
Mapped Weight is the same calculation per pixel, so we need to use
complementary maps for blending the layers equally. A basic black-to-white
gradient will require the inverted one on the other layer to participate equally.
If you only use 1 gradient map and the other one at a constant value 5.
The equation will be like this:
Layer 1: 0,0,0,0,1,2,3,4,5,6,7,8,8,8,8,8 (basic representation of pixel intensities)
Layer 2: 5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5 (constant weight value)
Result: 0 and 5 , 0 and 5 .... and so on... then the value 8 will be normalized down, due to 8+5=13.
The correct mapping for this purpose should be:
Layer 1: 0,0,0,0,1,2,3,4,5,6,7,8,8,8,8,8 (basic representation of pixel intensities)
Layer 2: 8,8,8,8,7,6,5,4,3,2,1,0,0,0,0,0 (basic representation of pixel intensities)
Result: 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8
Last edited by tom on Fri Jan 20, 2006 11:25 pm, edited 2 times in total.
Next Limit Team