I want to make object detection application base on this github https://github.com/bendahouwael/Vehicle-Detection-App-Android.
That github code uses tflite based on ssd mobilenet v1. So I made my custom model based on ssd mobilenet v2. I followed this link https://colab.research.google.com/drive/1qXn9q6m5ug7EWJsJov6mHaotHhCUY-wG?usp=sharing to make my own TFLITE model.
From https://netron.app/ I checked the model structure both almost same. Please see the pictures below.

First picture is about SSD MOBILENET V1 Structure.
Second picture is about my own custom model based on SSD MOBILENET V2.
I think both models' structure is same. So I just pasted my own model into app code(to asset folder) with label txt file.
The application showed its real time image well but did not detect the objects that I decided what to detect. I know ssd mobilenet V1 type is unit8 and my own model (which is based on ssd mobilenet v2) type is float32. But this is not a problem I guess b/c in the code it has setting about quantized or not.
So please who has any ideas, tell me the reason why my application works so bad.
ps1) I forgot to say about debugging. It did not show any error messages. This makes me much hard to work
