Thats kind of what I figured, that I would have to find other functions to replace these functions and it is not possible to just take a normal python file only using OpenCV and normal python libraries and convert it. Please correct me if I'm wrong but thats ok for now. Thanks!
BBencarn
- Jan 7, 2023
- Joined Jan 3, 2023
- 0 best answers
Im wondering if it is possible to generate a "model" from typical openCV functions. For example, I have a Jetson Nano hooked up to a raspberry pi camera that runs a python script that uses the following OpenCV functions:
cvtColor()
GaussianBlur()
threshold()
findContours()
moments()
HoughLines()
I have an OAK camera to play with and I was wondering if its worth spending time trying to get this python function to run on the OAK camera. From what I can tell the camera is focused on NN models which this program definitely isn't although they do have extremely similar inputs and outputs.
In general I am wondering if it is possible to convert non NN or ML models to the .blob format and then run them on the OAK cameras.
Thanks!