Ask Your Question

Bernhard's profile - activity

2016-11-13 05:28:34 -0600 received badge  Taxonomist
2015-11-08 10:26:31 -0600 received badge  Nice Answer (source)
2012-09-25 13:46:09 -0600 received badge  Teacher (source)
2012-09-25 04:02:28 -0600 answered a question Object Recognition dataset with paintings ?

Check out the Stanford Mobile Visual Search Dataset: http://web.cs.wpi.edu/~claypool/mmsys-dataset/2011/stanford/mvs_images

There is a set with museum paintings...

2012-09-20 01:42:32 -0600 asked a question BRISK runs out of memory on iOS

Hi, i tested the newly introduced BRISK detector/extractor https://github.com/Itseez/opencv/blob/master/modules/features2d/src/brisk.cpp

When i run BRISK on a little demo app keypoints are detected and extracted, but also memory warnings pop up. I've done some profiling and it seems the kernel generation (https://github.com/Itseez/opencv/blob/master/modules/features2d/src/brisk.cpp#L230) consumes a lot of memory and causes the issues.

Has anyone else spotted the same behavior (especially on mobile devices)?

  • bernhard
2012-09-18 04:57:04 -0600 received badge  Nice Question (source)
2012-08-22 10:06:00 -0600 received badge  Supporter (source)
2012-08-20 12:42:57 -0600 received badge  Student (source)
2012-08-18 12:20:28 -0600 received badge  Editor (source)
2012-08-18 12:17:50 -0600 asked a question Adding a new Detector/Descriptor to Evaluation-Sample

Hi,

yesterday i evaluated a few feature detectors and descriptors. I used the detector_descriptor_evaluation.cpp, which is located in the samples folder of the main repo.

After a few modifications the tests worked as expected. Unfortunately the list of the detectors and descriptors is out-of-date (e.g. ORB or FREAK are not included). I added ORB myself and it seems to work...but there is one little problem. All other detectors and descriptors have an xml file with quality results, e.g. SURF_res.xml (located in opencv_extra/testdata/cv/detectors_descriptors_evaluation/detectors)

So my question is: For what exactly is this file good for and how can i generate one for the detectors which are not included?