A long week of programming.
Beginning of the week was spent working to get haarcascades to work. As is standard with programming, it’s silly things that slow you down. While working on my program, it seemed that everything was fine. The program ran and the video was being generated, however, it would not pick up faces or facial features. I spent several hours trying changes and looking for solutions. After getting frustrated, I finally decided to move outside to take advantage of the nice weather. I started up my program and it picked up my face and eyes. It was all about the lighting. When I moved back inside, I flipped the orientation of the venetian blinds behind me, and BANG!, the program worked inside.
Next, it was time to work on thresholding and color recognition.
Finally, after working through various versions of thresholding and then applying some color filtering, I managed to be able to select for basic colors using thresholding and masking techniques. The next step was to be able to isolate an object and track its motion.
Through a series of searches on the web, I managed to find some very useful functions available in Open CV: cv2.findContours(), cv2.contaouArea(), and cv2.minAreaRect(). These allowed me to find the outline of objects in the selected color range, take the area of the contour (this allows for sorting to find the largest object), and then draw the smallest possible rectangle that completely encloses the object. A little help from Yong (who provided some slider code to help with color selection in the program) and I finally got the code to work as demonstrated in the attached video.
By adjusting the color sliders, it is possible to get the program on skin tone. You can adjust the skin tone through the sliders to make it adaptable to different skin colors.