I use CImg for my image processing work. I had written a small piece of code which is follows:

#include "../CImg.h"
#include <iostream> 
using namespace std;
using namespace cimg_library;

int main(int argc,char**argv)
{
 CImg<int> img(argv[1]);
 CImgDisplay disp;
 disp.assign(img);
 while(!disp.is_closed)
    disp.wait();
 return 0;  
}

Now I want to select an area from the displayed image.

Can some one tell me how to select an area from displayed image and store the selected pixels, and display the selected region in different display window. If some one can provide code, it will be of great help to me.

Thank you.

link|improve this question

0% accept rate
feedback

1 Answer

I had got the answer myself. Please follow this link if interested: Answer

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.