yoloRT load anchors

This commit is contained in:
Francesco Gatti
2019-02-18 21:39:14 +01:00
parent bdd8e0bc26
commit 87fe342ca2
18 changed files with 164 additions and 207 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ namespace tk { namespace dnn {
*/
struct dataDim_t {
int n, c, h, w, l;
int n = 0, c = 0, h = 0, w = 0, l = 0;
dataDim_t() : n(1), c(1), h(1), w(1), l(1) {};