bool Faceanomaly1Plugin::init()
{
    faceThresholdParameter ="face threashold";
    faceThresholdValue = "3";
    threasholdFaceCount =3;
    createStringParam(faceThresholdParameter,faceThresholdValue,true);

    createFrameViewer("Output");

    return true;
}
Example #2
0
void NoobaPlugin::onCreateFrameViewer(const QString &title, bool isVisible)
{
    FrameViewerData* fvd = new FrameViewerData(title, isVisible);
    _frameViewerDataMap.insert(title, fvd);
    emit createFrameViewer(title, isVisible, this);
}