|
void | darknet_add_skipped_class (DarknetNetworkPtr ptr, const int class_to_skip) |
| This is the C equivalent to Darknet::add_skipped_class().
|
|
void | darknet_clear_skipped_classes (DarknetNetworkPtr ptr) |
| This is the C equivalent to Darknet::clear_skipped_classes().
|
|
void | darknet_del_skipped_class (DarknetNetworkPtr ptr, const int class_to_include) |
| This is the C equivalent to Darknet::del_skipped_classes().
|
|
void | darknet_fix_out_of_bound_values (DarknetNetworkPtr ptr, const bool toggle) |
| This is the C equivalent to Darknet::fix_out_of_bound_values().
|
|
void | darknet_free_neural_network (DarknetNetworkPtr *ptr) |
| This is the C equivalent to Darknet::free_neural_network().
|
|
DarknetNetworkPtr | darknet_load_neural_network (const char *const cfg_filename, const char *const names_filename, const char *const weights_filename) |
| This is the C equivalent to Darknet::load_neural_network().
|
|
void | darknet_network_dimensions (DarknetNetworkPtr ptr, int *w, int *h, int *c) |
| This is the C equivalent to Darknet::network_dimensions().
|
|
void | darknet_set_detection_threshold (DarknetNetworkPtr ptr, float threshold) |
| This is the C equivalent to Darknet::set_detection_threshold().
|
|
void | darknet_set_gpu_index (int idx) |
| This is the C equivalent to Darknet::set_gpu_index().
|
|
void | darknet_set_non_maximal_suppression_threshold (DarknetNetworkPtr ptr, float threshold) |
| This is the C equivalent to Darknet::set_non_maximal_suppression_threshold().
|
|
void | darknet_set_trace (const bool flag) |
| This is the C equivalent to Darknet::set_trace().
|
|
void | darknet_set_verbose (const bool flag) |
| This is the C equivalent to Darknet::set_verbose().
|
|
void | darknet_show_version_info () |
| This is the C equivalent to Darknet::show_version_info().
|
|
const char * | darknet_version_short () |
| Return the short version string, such as "3.0.163" .
|
|
const char * | darknet_version_string () |
| Return the full version string, such as "v3.0-163-g56145bf" .
|
|