Ask Your Question

Jas92's profile - activity

2017-10-30 08:58:59 -0600 received badge  Teacher (source)
2017-10-30 07:43:21 -0600 commented question How to label/track HOG detections in order to improve the detection system?

@sturkmen, it seems that you've done a very interesting work. I do have some other urgent tasks right now but I will te

2017-10-30 03:43:46 -0600 commented answer detectMultiScale and CascadeClassifier: get better ROI

It was just a random though (you can make the ROI symmetrical using some min and max operations), for example the left h

2017-10-30 03:43:23 -0600 commented answer detectMultiScale and CascadeClassifier: get better ROI

It was just a random though (you can make the ROI symmetrical using some min and max operations), for example the left h

2017-10-30 03:42:31 -0600 commented answer detectMultiScale and CascadeClassifier: get better ROI

It was just a random though (you can make the ROI symmetrical using some min and max operations), for example the left h

2017-10-30 03:41:07 -0600 commented answer detectMultiScale and CascadeClassifier: get better ROI

It was just a random though (you can make the ROI symmetrical using some min and max operations), for example the left h

2017-10-29 16:40:15 -0600 commented question How to label/track HOG detections in order to improve the detection system?

I'll check it out, Thanks for sharing @sturkmen

2017-10-29 16:35:13 -0600 edited answer detectMultiScale and CascadeClassifier: get better ROI

First of all, let's check that you are using the right indices for each part, The image below is sort of a map for all

2017-10-29 16:33:12 -0600 edited answer detectMultiScale and CascadeClassifier: get better ROI

First of all, let's check that you are using the right indices for each part, The image below is sort of a map for all

2017-10-29 16:32:31 -0600 edited answer detectMultiScale and CascadeClassifier: get better ROI

First of all, let's check that you are using the right indices for each part, The photo below is sort of a map for all

2017-10-29 16:30:14 -0600 answered a question detectMultiScale and CascadeClassifier: get better ROI

First of all, let's check that you are using the right indices for each part, The photo below is sort of a map for all

2017-10-27 03:35:08 -0600 asked a question How to label/track HOG detections in order to improve the detection system?

How to label/track HOG detections in order to improve the detection system? Hi everyone! I'm working with HOG SVM in or

2017-10-26 18:56:54 -0600 received badge  Student (source)
2017-10-26 11:54:17 -0600 commented question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

If I succeed in this upgrade I will share the changes for sure :).

2017-10-26 11:28:09 -0600 commented question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

Thanks @break , sadly I don't have enough points to upvote your comment, I will try to upgrade the code and report any f

2017-10-26 09:59:18 -0600 edited question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0 When trying to compile a people detectio

2017-10-26 09:57:00 -0600 edited question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0 When trying to compile a people detectio

2017-10-26 09:56:24 -0600 edited question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0 When trying to compile a people detectio

2017-10-26 08:23:13 -0600 edited question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0 When trying to compile a people detectio

2017-10-26 08:19:39 -0600 edited question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0 When trying to compile a people detectio

2017-10-26 08:16:30 -0600 commented question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

Thanks for your comment @berak , I updated my question please check it out!

2017-10-26 08:15:27 -0600 edited question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0 When trying to compile a people detectio

2017-10-26 06:39:56 -0600 received badge  Editor (source)
2017-10-26 06:39:56 -0600 edited question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0 When trying to compile a people detectio

2017-10-26 06:39:03 -0600 asked a question Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0

Getting errors loading my trained SVM when switching from OpenCv 2.4.8 to 3.3.0 When trying to compile a people detectio

2016-05-18 09:45:15 -0600 received badge  Enthusiast
2016-05-13 04:10:01 -0600 asked a question What does hog.detectROI and hog.detectMultiScaleROI do? and how to use them?

I want to use hog detector in order to know if a ROI is a person or not, I already coded a filtering technique allowing me to select ROIs that can contain a person.

for instance this is what I'm doing: 1.Saving my rois as rectangles 2.For each roi: Cropping the original image, rescaling it and then applying hog.detect() on this image instead of the original one.

this is working but it doesn't seem to be the right way to do what I want. I found out lately that there is the hog.detectROI()(or hog.detectMultiScaleROI()) function, and I'm wondering if I can use it and give it my image and my ROIs as input only once, will it be able to tell me which ROIs are people? I would be grateful if someone can give me an example to know how to use this function, especially what should I give as locations when my ROIs are rectangles? and how to use the returned confidence values to decide?

Thank you in advance.