You've already forked libopenshot
mirror of
https://github.com/OpenShot/libopenshot.git
synced 2026-03-02 08:53:52 -08:00
Added CVObjectDetection and ObjectDetection effect
Also included kalman filter functions and code for tracking the output boxes from DNN model
This commit is contained in:
@@ -91,6 +91,9 @@ EffectBase* EffectInfo::CreateEffect(std::string effect_type) {
|
||||
|
||||
else if(effect_type == "Tracker")
|
||||
return new Tracker();
|
||||
|
||||
else if(effect_type == "Object Detector")
|
||||
return new ObjectDetection();
|
||||
|
||||
return NULL;
|
||||
}
|
||||
@@ -118,6 +121,7 @@ Json::Value EffectInfo::JsonValue() {
|
||||
root.append(Wave().JsonInfo());
|
||||
root.append(Stabilizer().JsonInfo());
|
||||
root.append(Tracker().JsonInfo());
|
||||
root.append(ObjectDetection().JsonInfo());
|
||||
|
||||
// return JsonValue
|
||||
return root;
|
||||
|
||||
Reference in New Issue
Block a user