Ask Your Question

P1t's profile - activity

2016-11-15 02:29:56 -0600 commented question Speed up or faster alternative to Opencv CascadeClassifier

Ok, thank you for your answers. I will try some minor changes (parametric overlap, reduce lock of mutex) and I will come back to give you my results. If it's not enough and if I have enough time, I will try to change the haar cascade.

2016-11-10 02:19:11 -0600 commented question Speed up or faster alternative to Opencv CascadeClassifier

I have some ideas but most of those are not compatible with LBP or HOG detector (setImage once in detectmultiscale, update pointer in setwindow, scale feature during pointer updating ...). I'm not sure (I'm not sure to well understand ystep) but it seems that the detector run for each line. Is this necessary? 1/2 or 2/3 of overlap is not enough?

2016-11-10 02:09:18 -0600 received badge  Enthusiast
2016-11-07 09:36:31 -0600 commented question Speed up or faster alternative to Opencv CascadeClassifier
  1. TBB is activated. I modified some lines in the part of code to reduce the overhead time due to lock by it don't change a lot.
  2. That's interesting. Is there specific place where this community discuss about that? I work to understand this part of code and find bottleneck. I'm interesting to know on which way you are working and me give my help. (For example, do you know if there is some works to use natural optimization of haar features (resize feature not the image)...)
  3. I use haar features, not tilted, Gentle AdaBoost, hit rate 0.999, false alarm 0.5, other parameters are default.

.

2016-11-07 03:58:43 -0600 asked a question Speed up or faster alternative to Opencv CascadeClassifier

Hi, I use a cascade classifier from Opencv to detect some objects in real time (12801024px image) but It too slow for me. I use 20 stages cascade on 2020px patch with a scale factor of 1.1. I'm about 2.5FPS on an embedded computer. I would like about 10FPS.

Here is my questions :

Is there some well known bottlenecks in this part of Opencv that I could rapidly fix?

Is there some projects (github ...) to improve this part of Opencv?

Is there some libraries (open source or not) that have a faster implementation of Viola Jones detector (cascade classifier)?

2016-09-26 04:58:37 -0600 commented answer [JPEG2000] ROI in JPEG2000 compression

I use OpenCV because I do lot of processing on those images. The compression part is just the result step. This is why I was looking for openCV's solutions. Btw thank you for your answer

2016-09-26 04:25:11 -0600 commented answer [JPEG2000] ROI in JPEG2000 compression

Image compression is pretty new for me, do you know some algorithm that allow this functionality? I would like to compress some image with loss except in the roi that need to be lossless.

2016-09-26 04:22:20 -0600 commented answer [JPEG2000] ROI in JPEG2000 compression

After looking the jasper's FAQ, it seems that only the decoder can handle roi functionality.

2016-09-26 04:21:00 -0600 received badge  Supporter (source)
2016-09-26 04:05:04 -0600 asked a question [JPEG2000] ROI in JPEG2000 compression

Hi,

I would like to use the roi functionality of JPEG2000 in imencode function. This functionality allows to compress some parts with a level of compression lower than the rest of the image. I don't find any documentation about this in OpenCV doc and I would like to if OpenCV can handle this.

Thank you in advance

PS : I use Opencv 2.4 (for nom) on Ubuntu OS