| 
    GECKO 1.0 
   Human-computer interface based on hand gesture recognition 
   | 
 
 Shows an image with information and starts calibrationLoop function. {
    int delay=24;
    cv::Mat default_values=cv::imread("../img/default.png");
    while (1)
    {
        cv::imshow("Default Values", default_values);
        char key =  cv::waitKey(delay);
        if ( key == 10 || key == 13 )
        {
            cv::destroyWindow("Default Values");
            break;
        }
        else if (key==27 || key=='q')
            exit(0);
    }
    HandDetector::calibrationLoop(cap);
}
Here is the call graph for this function: 
![]()  | 
  
 1.7.4