API structure proposal
Closed this issue · 0 comments
cansik commented
This is a simplified API structure proposal on how to use the library:
PImage myImage = // something;
// deep vision API => maybe static
DeepVision deepVision = new DeepVision(this);
// create a default yolo v3 tiny
DeepNeuralNetwork yolo = deepVision.createYolo(DNN.YOLOv3Tiny);
// run network
yolo.apply(myImage);