wolfpack12
wolfpack12
Pretty sure this is the root cause. No objects were detected. It’s been assigned as a bug. https://github.com/maju116/platypus/issues/94
This may be the cause: https://github.com/maju116/platypus/issues/96
Would greatly appreciate this feature being rolled into the production version. Exporting Object Detection models to something like ONNX with NMS will allow many people to use light weight frameworks...
I’ll test in the new year. Just curious, how is this implementation different than yolort?
The update is very close. The detections are off by only a couple (out of ~200 objects). While I drill into the root cause, I noticed a few things: **1....
> > The update is very close. The detections are off by only a couple (out of ~200 objects). While I drill into the root cause, I noticed a few...
@triple-Mu Unfortunately that isn't the issue. I can send it a 640x640 image and the results still don't match. I suspect the issue is the use of letterbox (Still need...
I added the letterboxing function below. It helps increase the accuracy but its still _slightly_ off. ``` def letterbox_image(image, size): iw, ih = image.size w, h = size scale =...
After a lot of work, I’ve realized that R is not the right tool for computer vision tasks. There are lots of very user friendly python models. I’ve used this...
YOLOv5 isn't an OCR tool - It's used for object detection. To use YOLOv5 to perform OCR on license plates, you'd have to create bounding boxes and labels associated with...