Ask Your Question

Younès Openv's profile - activity

2017-10-16 16:15:46 -0600 asked a question Scale and orientation of SURF keypoints

Scale and orientation of SURF keypoints Hi, I extracted the SURF keypoints and descriptors of an image using Python wit

2016-03-02 10:50:09 -0600 asked a question Retrieve data from CvSeq

Hello, I have a structure of the type CvSeq* and I want retrieve data from it. Each line is composed of N element The code is:

     CvSeq *imageKeypoints = 0, *imageDescriptors = 0;
      int i;
 CvSURFParams params = cvSURFParams(500, 1);
      cvExtractSURF( image, 0, &imageKeypoints, &imageDescriptors, storage, params );
      for( i = 0; i < imageDescriptors->total; i++ )
      {
          CvPoint* r = (CvPoint*)cvGetSeqElem( imageDescriptors, i)}

CvPoint* gives me only 2 elements and y but the line is omposed with many elements. What could I put instead of CvPoint

Thanks

2016-02-15 08:34:35 -0600 asked a question Problem of installation of OpenCV in Mac

Hello,

I want to install OpenCV on Mac 10.11.2 . After taping brew as : brew install opencv,

The execution can't end. It is blocked for a long time in :

==> ../configure --build=x86_64-apple-darwin15.2.0 --prefix=/usr/local/Cellar/gc
==> make bootstrap

Thanks Younès