mirror of
https://github.com/pjreddie/darknet.git
synced 2023-08-10 21:13:14 +03:00
PYTHON DETECTION NOW I'M OUT DON'T WAIT UP FOR ME 🐫 🐴 🐶 🏜️
This commit is contained in:
@ -699,6 +699,9 @@ float *network_predict_p(network *net, float *input);
|
||||
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, box *boxes, float **probs);
|
||||
int num_boxes(network *net);
|
||||
box *make_boxes(network *net);
|
||||
|
||||
void reset_network_state(network net, int b);
|
||||
void reset_network_state(network net, int b);
|
||||
|
Reference in New Issue
Block a user