testing on one image

This commit is contained in:
Joseph Redmon
2015-06-11 15:38:58 -07:00
parent d41fbf638e
commit 11c72b1132
8 changed files with 1046 additions and 30 deletions

View File

@@ -232,7 +232,9 @@ void rgbgr_filters(convolutional_layer l)
int i;
for(i = 0; i < l.n; ++i){
image im = get_convolutional_filter(l, i);
if (im.c == 3) rgbgr_image(im);
if (im.c == 3) {
rgbgr_image(im);
}
}
}