Tim Arnold
Tim Arnold
> Regarding the preprocessing operations mentioned for Roboflow, I am not very familiar with them. I use the same preprocessing method as Ultralytics, which involves scaling the images while maintaining...
Good to know, thank you. Can the tensorrt version be the issue? With python I used 8.6.1 and now 10.2.0 I'm so confused right now because in both ways I...
[best.pt.zip](https://github.com/user-attachments/files/16486761/best.pt.zip) [YOLO.zip](https://github.com/user-attachments/files/16486762/YOLO.zip) I also just found out, triple-Mu/YOLOv8-TensorRT also has a c++ inference example. This works just fine with the expected results, but only supports yolov8.
That is strange. This is the code I used for inference. Is maybe here the problem? ```c++ #include #include #include #include "AIWorker.h" #include "tensorrt/deploy/vision/detection.hpp" AIWorker::AIWorker(QObject *parent) : QObject(parent) { m_running...
I just found the problem. I preprocessed the images on myself which didn't line up with the training. Thank you very much for your help.
The wrench program? Sure ``` var roadpieces[12][13]; var is_on[12]; var car_x = 6; var car_y = 2; var ref_point = 4; var keep_state = 2; var loop_counter = 0; var...
One notable addition would be that the code works perfectly on an esp8266. Maybe the RISC-V architecture of the esp32 c3 breaks the interpreter.
Great that you have the same hardware. I'll try to create a minimal example to reproduce tomorrow.
I just confirmed the crash also happens in non compact mode
I realized that the crash only occurs when the function `function on_event(event)` is called. Maybe it's because there is a parameter associated? Can you think of a reason why the...