pntt3011

Results 35 comments of pntt3011

Thank you for your impressive work! Could you also send me the trained model at [email protected]? I would like to play around with it.

Maybe you have fixed it but I still want to share [this answer](https://stackoverflow.com/a/55630212). It works for me on Window 10.

Hi @pango99, i flip the image horizontally to make it mirror the real world. You can comment out that line if you want.

Did you try `cv::VideoCapture cap(0, cv::CAP_DSHOW)`? Btw, the inference time in my code does not include the time opencv captures a frame because it is limited by your camera's FPS.

I think your FPS measurement is absolutely correct. About the error in debug mode, I also faced it before but couldn't fix it (I vaguely remembered it was tflite's problem)....

I tried moving `tflite::ops::builtin::BuiltinOpResolver resolver` to the `ModelLoader` class instead of using as a local variable and the above error was solved. But then `m_interpreter->inputs()` raised another error. All examples...

Can you show me the code you use to change the resolution?

I'm sorry that I cannot help you immediately because it's midnight in my country. I'll see about it tomorrow. But i can answer some of your questions right now. 1....

Hello, 1. I tried resizing the captured frame to `1920x1080` before loading to the model and it still worked as expected. Sorry but I cannot reproduce your problem. 2. I...

I just found [this part of a repo](https://github.com/Rassibassi/mediapipeDemos/blob/b627866b3a2b6bf1d111f48563608df0808f4857/custom/iris_lm_depth.py#L75), which is written in Python but can be easily mapped to C++. I'm sorry that I'm very busy right now so I...