:charizard: fixed non-square aspect ratio thing :charizard:

This commit is contained in:
Joseph Redmon
2017-04-17 14:53:48 -07:00
parent addcc4ef96
commit 6731a3552d
9 changed files with 82 additions and 47 deletions

View File

@@ -7,7 +7,7 @@
layer make_region_layer(int batch, int h, int w, int n, int classes, int coords);
void forward_region_layer(const layer l, network net);
void backward_region_layer(const layer l, network net);
void get_region_boxes(layer l, int w, int h, float thresh, float **probs, box *boxes, int only_objectness, int *map, float tree_thresh, int nomult);
void get_region_boxes(layer l, int w, int h, int netw, int neth, float thresh, float **probs, box *boxes, int only_objectness, int *map, float tree_thresh, int relative);
void resize_region_layer(layer *l, int w, int h);
void zero_objectness(layer l);