| 
    GECKO 1.0 
   Human-computer interface based on hand gesture recognition 
   | 
 
 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);
    }
}
 | 
  
 1.7.4