An open API service indexing awesome lists of open source software.

https://github.com/asus4/ofxalgorithmparametergroup

Make ofxGui controls for cv::Algorithm
https://github.com/asus4/ofxalgorithmparametergroup

opencv openframeworks openframeworks-addon

Last synced: 5 months ago
JSON representation

Make ofxGui controls for cv::Algorithm

Awesome Lists containing this project

README

          

# ofxAlgorithmParameterGroup

Make ofxGui controls for cv::Algorithm

```c++

class ofApp : public ofBaseApp {
// ....
ofxPanel gui;
ofxAlgorithmParameterGroup parameters;
};

void ofApp::setup() {
// Any cv::Algorithm
cv::Ptr detector = FeatureDetector::create("ORB");
parameters.setAlgorithm(detector);

cv::BackgroundSubtractorMOG2 mog2;
parameters.setAlgorithm(&mog2);

gui.setup();
gui.add(parameters);
}
```

## Require

- openFrameworks v0.9.0RC1 or more
- ofxGui
- ofxCv or ofxOpenCv