GECKO 1.0
Human-computer interface based on hand gesture recognition
void HandDescriptor::boundingBoxExtraction ( ) [private]

Extracts the bounding boxes around the hand contour ( rectangle and rotated rectange)

{
    //-- Extract minimal rectangle enclosing the hand:
    _hand_rotated_bounding_box = cv::minAreaRect( _hand_contour[0]);

    //-- Extract bounding box:
    _hand_bounding_box  =  cv::boundingRect( _hand_contour[0] );

}
 All Classes Functions Variables