| 
    GECKO 1.0 
   Human-computer interface based on hand gesture recognition 
   | 
 
 Prints the maximum inscribed circle: {
    if ( dst.empty() )
        dst = src.clone();
    if ( _hand_found )
    {
        cv::circle( dst, _max_circle_incribed_center, _max_circle_inscribed_radius, color, thickness);
        if (show_center)
            cv::circle( dst, _max_circle_incribed_center, 2, color,  thickness);
    }
}
 | 
  
 1.7.4