03-15-2016 05:15 PM - edited 03-15-2016 05:17 PM
Hello,
I would like to create the complementer of a 8-bit image. I am doing it wrong in the example below, how can it be done properly?
thanks!
(edit: the FOR loop obviously not needed)
Solved! Go to Solution.
03-15-2016 05:26 PM
For an 8-bit image the points are indices into the color array. What you should do is leave the indices alone and for each color in the color array find its complement:
03-15-2016 05:29 PM
Clear, thanks!