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

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);
        }

}
 All Classes Functions Variables