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

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);
    }
}
 All Classes Functions Variables