Ask Your Question

Marosko89's profile - activity

2019-06-18 10:46:00 -0600 received badge  Notable Question (source)
2018-07-27 02:45:59 -0600 received badge  Popular Question (source)
2017-08-22 08:50:21 -0600 received badge  Student (source)
2015-08-14 10:54:34 -0600 received badge  Scholar (source)
2015-08-13 10:49:19 -0600 asked a question Opencv 3.0 FAST Corner Detection

I am beginner in OpenCV. I have problem implement FAST algoritmus in Vsual Studio with version OpenCV 3.0. I have tried following implementation in c++:

src = imread("../images/right.jpg", CV_LOAD_IMAGE_GRAYSCALE);
Ptr<FastFeatureDetector> detector = FastFeatureDetector::create(TRESHOLD);
vector<KeyPoint> keypointsD;

with (but both realizations are BAD)

detector->detect(src, keypointsD);
drawKeypoints(src, keypointsD, output);
imshow(window_name, output);

or

FAST(src, keypointsD, TRESHOLD, true); //fast detector
drawKeypoints(src, keypointsD, output);
imshow(window_name, output);

Can you help me with any example or what Do I do bad?