Click here to Skip to main content
15,891,316 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
SQL
In my program i am detecting the face of a person, my code is working well, but i am worry about this code, as for eye detection "cascade.detectMultiScale()" have many parameters, while  for Face detection i am using these few parameters, and how it detects the face, whether we have not initialized the size of detecting object in  "cascade.detectMultiScale()"

     cascade.detectMultiScale(gray, faces, 1.2, 2);

    for (int i = 0; i < faces.size(); i++)
    {
        Rect r = faces[i];
        rectangle(src, Point(r.x, r.y), Point(r.x + r.width, r.y + r.height), CV_RGB(0,0,255));
    }
Posted

1 solution

these articles may use full to you....

[^]


[^]

[^]
 
Share this answer
 
Comments
JoCodes 2-Feb-14 12:47pm    
Nice links , My 5

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900