For the TFlite plugin I have created an application using SSD and yolov2_tiny As far as I know, tflite plugin only supports yolov2
Now I want to add yolov4 to my app
when i execute i get the following error:
source code causing error:
I think because the ouput format was incorrect.
this.output = new float[1][gridSize][gridSize][(numClasses + 5) * numBoxesPerBlock];
Where do I find the format of the yolov4 output? or who has successfully added yolov4 to the flutter app, please give me advice.
Thank you, and have a nice day.