Dear group members i want a code to extrct the pixel information from the image in C++ send me da code asap..

    #include "CImg.h"
    using namespace cimg_library;

    int main()
    {
        CImg<unsigned char> src("imageName");
        int R = (int)src(c,r,0,0);
        int G = (int)src(c,r,0,1);
        int B = (int)src(c,r,0,2);
        return 0;
    }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.