GECKO 1.0
Human-computer interface based on hand gesture recognition
HandDetector::HandDetector ( cv::Mat &  ROI)

Constructor that takes as argument an image of the hand's skin to obtain the custom HSV range.

{
    //-- Std deviation multipliers:
    hue_sigma_mult = 2;
    sat_sigma_mult = 2;
    val_sigma_mult = 2;

    //-- Skin color limits
    calibrate( ROI );

    //-- Initialize cascade classifier:
    initCascadeClassifier();
    initBackgroundSubstractor();
}

Here is the call graph for this function:

 All Classes Functions Variables