Expose YOLODLL_API layer* get_network_layer(network* net, int i);

This commit is contained in:
vinjn
2018-06-10 09:45:39 +08:00
parent 17520296c7
commit 83b2ae66e1
2 changed files with 6 additions and 0 deletions

View File

@ -493,6 +493,11 @@ image get_network_image_layer(network net, int i)
return def;
}
layer* get_network_layer(network* net, int i)
{
return net->layers + i;
}
image get_network_image(network net)
{
int i;