On 02/03/2014 at 06:50, xxxxxxxx wrote:
Why is "BaseBitmap.__getitem__" bmp(x,y) only 8Bit?
It seems strange hence all the other color Values are more than enough but the bmp functions can only output 8bit values?
Perhaps I am on the wrong track, i need to read the pixel color of a rendered image to check against a color setting made in c4d.
How do i read the rendering in 16bit instead of 8bit?
From the SDK:
_Example:
r, g, b = bmp[5, 5] #returns the color of a pixel at position x(5), y(5)
Return type: tuple(int, int, int)
Returns: The color of a pixel. Range between 0-255._ <-----!!!
Can it be converted to a C4D Vector with full color spectrum ? I guess I'll lose accuracy?
confused ...
???