CImg<unsigned char> src("image.jpg");
int width = src.width();
int height = src.height();
unsigned char* ptr = src.data(10,10);
How can I get rgb from ptr?
How can I get |
|||
|
|
|
From the CImg documentation -- section 6.13 on page 34, and section 8.1.4.16 on page 120 -- it looks like the
...where For example:
(But this is just a guess!) Edit: It looks like there's also an operator() for CImg that works in a similar manner:
|
|||||||||||
|
|
Tested on Ubuntu 10.04 with a handmade 3x3 RGB image saved as sudo apt-get install cimg-dev Source file
Compile and run: g++ cimg_test.cpp -lX11 -lpthread -o cimg_test ./cimg_test 3x3 (0,0) = R0 G0 B0 (0,1) = R255 G0 B0 (0,2) = R0 G255 B0 (1,0) = R0 G0 B255 (1,1) = R128 G128 B128 (1,2) = R0 G0 B128 (2,0) = R128 G0 B0 (2,1) = R0 G128 B0 (2,2) = R255 G255 B255 It works. |
|||
|
@wamp: I don't know about CImg but grayscale images in RGB have: R = G = B and in CMYK: C = M = Y = 0 K = luminance So you don't even need a function for that... |
|||
|
|