Example #1
0
 public ObjectDetector(IJSInProcessRuntime runtime, ObjectDetectorModel model, ObjectDetectorOptions serializableOptions = null)
 {
     Runtime = runtime;
     Init(model.ToString().ToLower(), serializableOptions);
 }
Example #2
0
 public ObjectDetector(IJSInProcessRuntime runtime, string modelURL, ObjectDetectorOptions serializableOptions = null)
 {
     Runtime = runtime;
     Init(modelURL, serializableOptions);
 }