GECKO 1.0
Human-computer interface based on hand gesture recognition
void HandDescriptor::plotMinEnclosingCircle ( cv::Mat &  src,
cv::Mat &  dst,
bool  show_center = true,
cv::Scalar  color = cv::Scalar(255,0,255),
int  thickness = 1 
)

Prints the minimum enclosing circle:

{
    if ( dst.empty() )
        dst = src.clone();

    if ( _hand_found)
    {
        cv::circle( dst, _min_enclosing_circle_center, _min_enclosing_circle_radius, color , thickness);

        if (show_center)
            cv::circle( dst, _min_enclosing_circle_center, 2, color, thickness);
    }
}
 All Classes Functions Variables