demo for more yolo3

This commit is contained in:
Francesco Gatti
2019-02-19 08:43:35 +00:00
parent 87fe342ca2
commit c7941666ec
4 changed files with 47 additions and 10 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ namespace tk { namespace dnn {
*/
struct dataDim_t {
int n = 0, c = 0, h = 0, w = 0, l = 0;
int n, c, h, w, l;
dataDim_t() : n(1), c(1), h(1), w(1), l(1) {};