Update README and add print in demo

Signed-off-by: Micaela Verucchi <micaelaverucchi@gmail.com>
This commit is contained in:
Micaela Verucchi
2021-11-24 18:08:41 +01:00
parent 0707c26bbd
commit bbae618118
2 changed files with 18 additions and 10 deletions
+8 -6
View File
@@ -62,12 +62,14 @@ int main(int argc, char *argv[]) {
bool show = YAMLgetConf<bool>(conf, "show", true);
bool save = YAMLgetConf<bool>(conf, "save", false);
std::cout <<"Net settings - net: "<< net
<<", ntype: "<< ntype
<<", n_classes: "<< n_classes
<<", n_batch: "<< n_batch
<<", conf_thresh: "<< conf_thresh<<"\n";
std::cout <<"Demo settings - input: "<< input
<<", show: "<< show
<<", save: "<< save<<"\n\n";
tk::dnn::Yolo3Detection yolo;
tk::dnn::CenternetDetection cnet;