darknet-sys 0.1.1

-sys crate for Rust darknet wrapper
Documentation
1
2
3
4
5
6
7
8
#ifndef TREE_H
#define TREE_H
#include "darknet.h"

int hierarchy_top_prediction(float *predictions, tree *hier, float thresh, int stride);
float get_hierarchy_probability(float *x, tree *hier, int c, int stride);

#endif