You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was trying these C++ api and examples and realized that there's no example that uses detection model? But there is one in pycoral repository.
Besides, I also noticed the example only accepts fixed size input. However, in the test framework it does accept variable size input and has a resize function. I'm wondering why those useful functions are only in the test_utils but not tflite_utils? I have created a detection example that takes bmp files by copying those resize functions to tflite_utils as well. But not sure if this is the desired implementation.
The text was updated successfully, but these errors were encountered:
@jedichen121 I was going to point you to that resized example function in out test_utils directory. It is up to you to decide if you want to use it or not, keep in mind that all of our examples are just that, examples :)
pycoral is python and so it is super simple to just import another library for resizing purposes, for c++ we want to keep it minimal
I was trying these C++ api and examples and realized that there's no example that uses detection model? But there is one in pycoral repository.
Besides, I also noticed the example only accepts fixed size input. However, in the test framework it does accept variable size input and has a resize function. I'm wondering why those useful functions are only in the test_utils but not tflite_utils? I have created a detection example that takes bmp files by copying those resize functions to tflite_utils as well. But not sure if this is the desired implementation.
The text was updated successfully, but these errors were encountered: