Ask Your Question

Bibliarij's profile - activity

2015-01-20 04:13:22 -0600 received badge  Enthusiast
2014-10-04 16:27:52 -0600 commented question Problems with Face detection

Thanks to all, I will try to use methods of Histogram Equalizationn

2014-09-07 03:15:34 -0600 asked a question Problems with Face detection

Hello all! I use Viola-Jones method for face detection in OpenCV, but, when the face is lit half (one half of the face is lit, the other is darkened) face is not detected. Could any one suggest any solution to this problem?

2014-01-20 14:11:49 -0600 answered a question I can't install openCV in eclipse for use with andorid.

image description

2013-02-24 01:36:39 -0600 answered a question Display Haar features from a trained AdaBoost classfier

Here http://makematics.com/research/viola-jones/ guy realized your idea.

2013-02-21 12:00:41 -0600 commented question cascade classifier data structure

mmm, ok, thanks

2013-02-21 08:40:25 -0600 answered a question cascade classifier data structure

It is possible to use CvHaarClassifierCascade structure in such manner:

CvHaarClassifierCascade* c = (CvHaarClassifierCascade*)cvLoad("haarcascade_frontalface_alt.xml", 0, 0, 0);
for (int i = 0; i< c->count; i++)
{
    CvHaarStageClassifier* stage = c->stage_classifier + i;
    for (int j = 0; j < stage->count; j++)
    {
        CvHaarClassifier* hc = stage->classifier + j;
        for (int k = 0; k < hc->count; k++)
        {
            CvHaarFeature* feature = hc->haar_feature + k;
            if(feature->tilted) std::cout << "has titled!";
        }
    }
}
2013-02-21 00:39:32 -0600 asked a question cascade classifier data structure

Hello all! For my own implementation of Viola-Jones algorithm partly I use some methods and structures of OpenCV. For example, reading of images to structure CvMat. Now I need to use cascade classifier. For example, I decide to use class cv::CascadeClassifier. Is there easy way to access members of this class? For example to vector<stage>. This member somehow is protected... Or exists another similar structure? Thanks for the answers.

2013-02-20 11:57:16 -0600 commented question haarcascade_frontalface_alt

thanks!!!!

2013-02-20 10:36:36 -0600 commented question haarcascade_frontalface_alt

mmm... just one more question) In xml file there is a tag <feature>, that represents single feature. This tag have nested tag <tilted>. Does value 0 inside this tag means that this is not tilted feature?

2013-02-20 09:08:15 -0600 commented answer Matrix Question

BGR is the same as RGB, but order of channels is inversed because of little-endian order of bytes in processor... Check this link http://stackoverflow.com/questions/367449/bgr-color-space For values (0,0), (0,1), (0, n) I think that this is coordinates of pixel - index of row and column.

2013-02-20 05:16:27 -0600 asked a question haarcascade_frontalface_alt

I use cascade file haarcascade_frontalface_alt.xml. Does the word "alt" mean that this cacsade doesn't use titled features?

2013-02-20 05:11:50 -0600 commented answer tilted integral sum

ok, thanks

2013-02-20 02:53:06 -0600 commented answer tilted integral sum

I have one additional question. I use cascade file haarcascade_frontalface_alt.xml. Does the word "alt" mean that this cacsade doesn't use titled features?

2013-02-20 00:29:43 -0600 commented answer tilted integral sum

Yeah, maybe I say not very clear... I can't understand only titled integral image. Anyway thanks to the answer!

2013-02-19 13:25:55 -0600 received badge  Supporter (source)
2013-02-19 13:25:38 -0600 received badge  Critic (source)
2013-02-19 12:37:30 -0600 answered a question Needing Help With a Code

Copy constructor - create new object with data identical to source object

2013-02-19 12:31:51 -0600 answered a question Matrix Question

I think yes... looks like pixel in BGR model

2013-02-19 12:21:22 -0600 asked a question tilted integral sum

Hello all! Is getting of tilted integral sum is necessarily for implementing Viola-Jones method? It seems to me that I saw some realizations which don't use tilted integral sum. This kind of integral image is some strange for me, I can't understand it...

2013-02-04 08:45:57 -0600 received badge  Scholar (source)
2013-02-04 08:45:44 -0600 commented answer CvIntegral

thanks a lot

2013-02-04 08:22:02 -0600 commented answer CvIntegral

Sorry, but I don't understand you... For example, for 3x3 matrix {{1 2 3} {3 2 1} {2 3 1}} integral matrix will be {{1 3 6}{4 8 12}{6 13 18}}. Am i right?

2013-02-04 00:55:23 -0600 edited question CvIntegral

Hello all! I have some questions about function cvIntegral().
1. Why resulting integral image have size (source_width+1) x (source_height+1), but not source_width x source_height?
2. How integral image of colored image (3-channel) is calculating?

2013-02-04 00:54:51 -0600 received badge  Editor (source)