Ask Your Question

gp's profile - activity

2014-03-22 10:22:14 -0600 received badge  Famous Question (source)
2013-09-20 16:02:42 -0600 asked a question code of FREAK

Dear all,

I would like to study in detail the code of the class FREAK described here: http://docs.opencv.org/modules/features2d/doc/feature_detection_and_description.html#freak

do anyone know in which files it is implemented?

thanks all!

2013-08-27 06:38:20 -0600 received badge  Notable Question (source)
2013-05-20 15:20:54 -0600 received badge  Good Question (source)
2013-05-20 15:20:51 -0600 received badge  Popular Question (source)
2012-12-05 04:58:56 -0600 received badge  Nice Question (source)
2012-08-17 12:12:15 -0600 asked a question using highgui - difficulties with namedWindow

Dear all,

I am new with openCV, I am trying to use the graphical interface highgui.

I have tried the following very simple piece of code, which is compiled properly, but when I run it I get an error message like

"Unhandled exception at 0x774f15de in try1.exe: 0xC0000005: Access violation reading location 0xcccc006f."

What am I doing wrong?

Here is the code:

// try1.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <iostream>
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
//#include "myfunc.h"

using namespace std;
using namespace cv;

int _tmain(int argc, _TCHAR* argv[])
{
   namedWindow("Hello");
   return 0;
}

I don't know if it matters, I have created a C++ console application with Visual Studio 10.

I thank you for your very kind help.

2012-08-10 12:44:38 -0600 received badge  Student (source)
2012-08-10 12:04:25 -0600 asked a question Concatenating matrices

Hello everyone,

I am starting using opencv, I would like to ask if there are functions to concatenate matrices, e.g. (matlab notation):

given matrices A = [1,2,3; 4,5,6], and B = [11,22,33; 44,55,66], I would like to produce the matrix H = [1,2,3,11,22,33; 4,5,6,44,55,66] (horizontal concatenation), and the matrix V = [1,2,3; 4,5,6; 11,22,33; 44,55,66] (vertical concatenation)

does openCV provide me the way to do it easily?

Thanks a lot for your kind help, GP