Permalink
Browse files
Added CodeBook algorithm to the QT GUI
- Loading branch information...
Showing
with
2 additions
and
0 deletions.
-
+2
−0
gui_qt/mainwindow.cpp
|
|
@@ -72,6 +72,7 @@ namespace bgslibrary |
|
|
map["PAWCS"] = &createInstance<PAWCS>;
|
|
|
map["TwoPoints"] = &createInstance<TwoPoints>;
|
|
|
map["ViBe"] = &createInstance<ViBe>;
|
|
|
+ map["CodeBook"] = &createInstance<CodeBook>;
|
|
|
|
|
|
return map[alg_name]();
|
|
|
}
|
|
|
@@ -127,6 +128,7 @@ namespace bgslibrary |
|
|
stringList.append("PAWCS");
|
|
|
stringList.append("TwoPoints");
|
|
|
stringList.append("ViBe");
|
|
|
+ stringList.append("CodeBook");
|
|
|
return stringList;
|
|
|
}
|
|
|
}
|
|
|
|
0 comments on commit
1299c13