mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
faster nms and stuff
This commit is contained in:
@ -682,7 +682,7 @@ void save_weights_upto(network *net, char *filename, int cutoff);
|
||||
void load_weights_upto(network *net, char *filename, int start, int cutoff);
|
||||
|
||||
void zero_objectness(layer l);
|
||||
void get_region_detections(layer l, int w, int h, int netw, int neth, float thresh, int *map, float tree_thresh, int relative, detection *dets);
|
||||
int get_region_detections(layer l, int w, int h, int netw, int neth, float thresh, int *map, float tree_thresh, int relative, detection *dets);
|
||||
void free_network(network *net);
|
||||
void set_batch_network(network *net, int b);
|
||||
void set_temp_network(network *net, float t);
|
||||
@ -739,10 +739,7 @@ int network_width(network *net);
|
||||
int network_height(network *net);
|
||||
float *network_predict_image(network *net, image im);
|
||||
void network_detect(network *net, image im, float thresh, float hier_thresh, float nms, detection *dets);
|
||||
int num_boxes(network *net);
|
||||
detection *get_network_boxes(network *net, int w, int h, float thresh, float hier, int *map, int relative);
|
||||
void fill_network_boxes(network *net, int w, int h, float thresh, float hier, int *map, int relative, detection *dets);
|
||||
detection *make_network_boxes(network *net);
|
||||
detection *get_network_boxes(network *net, int w, int h, float thresh, float hier, int *map, int relative, int *num);
|
||||
void free_detections(detection *dets, int n);
|
||||
|
||||
void reset_network_state(network *net, int b);
|
||||
|
Reference in New Issue
Block a user