yolov3 optimized by model optimizer fail to do inference
OpenCv4.1.1 windows 10 Inference engin R3 2019 Visual studio 2019. I run sample of opencv dnn. I have the following models:
- ssd mobilenet tensorflow model that do licenseplate recognition (ocr).
- ssd mobilenet tensorflow model optimized by mo_tf.py that do licenseplate recognition (ocr).
- Tiny yolo darknet model that locate license plates and classify jurisdiction.
- Tiny yolo darknet model optimized by mo_tf.py after conversion that locate license plates and classify jurisdiction.
The first 3 I am able to run correctly by the sample.
The last one returns 2 matrices of size -1 -1.
The routine static std::string outLayerType = net.getLayer(outLayesr[0])
->type; returns "regionYolo" which is not supported by the sample.
https://www.dropbox.com/sh/nir2yqqjd9...
above is link to my projects and models.