HighInBC
8th October 2004, 03:39
I need to subtract one clip from the other and get an absolute answer.
The Subtract() command and the Layer() command both crop values to 0 if they go below it, what I would like is an absolute answer.
say pixel 'a' is 120, and pixel 'b' is 130, then I would like 10:
120-130 = -10, absolute of -10 is 10
like 'abs(a-b)' or ((a-b)<0)? ((a-b)*-1) : (a-b)
This would help me alot, -HighInBC
The Subtract() command and the Layer() command both crop values to 0 if they go below it, what I would like is an absolute answer.
say pixel 'a' is 120, and pixel 'b' is 130, then I would like 10:
120-130 = -10, absolute of -10 is 10
like 'abs(a-b)' or ((a-b)<0)? ((a-b)*-1) : (a-b)
This would help me alot, -HighInBC