| 
    GECKO 1.0 
   Human-computer interface based on hand gesture recognition 
   | 
 
 Plot fingertip markers: {
    if ( dst.empty() )
        dst = src.clone();
    if ( _hand_found )
        for( int i = 0; i < _hand_fingertips.size(); i++)
        {
            cv::circle( dst, _hand_fingertips[i], 10, color, thickness );
            if ( draw_lines )
                cv::line( dst, _hand_finger_line_origin[i], _hand_fingertips[i], color, thickness);
        }
}
 | 
  
 1.7.4