Object Detection android app | deep learning android | tflite | mobilenet

preview_player
Показать описание
Hey everyone welcome to another video.
This video is all about developing a android app which can detect all the objects in the image.
I used mobile net ssd tflite model from the official website.
In this video you will learn:
- How to deploy tflite dl model
- How to draw on bitmaps using:
- canvas and Paint

contact me :

android app tflite,object detection android app,tflite object detection,detect object in image,with location,android studio,kotlin,java,ml deploy,dl deploy
Рекомендации по теме
Комментарии
Автор

great tutorial, i also want to count the numbers of objects detected in the image how can i do this ?

priyanshuupadhyay
Автор

Pls make a tutorial on object detection with Java and other parts of deployment, i really need it to know

Replcate
Автор

I have a question about YAMNet TensorFlow lite model (Android app). I want to use it with an audio clip as input, Not a live recording. Can you help in that? Thank you for your help

alanood
Автор

We created a asset file and after we have to paste label.txt in assets file....but while clicking on assets file we don't get anything to upload labels.txt file.... please anyone say solution for it

music_vibes__
Автор

Is there uploaded video of the java language?

richlejesta
Автор

can we detect 7 segment digits values?

jitendersisl
Автор

can you make a video on how to create an android app that could run to perform custom object detection

puranjitsingh
Автор

thank you for your video. could you upload how using custom data model in this app ?

MrtaiDiary
Автор

i got error from this code, help me solve this please
score.forEachIndexed { index, fl ->
x = index
x *= 4

if(fl > 0.5.toChar()){
paint.style = Paint.Style.STROKE
canvas.drawRect(RectF(location.get(x+1)*w, location.get(x)*h, location.get(x+3)*w, location.get(x+2)*h), paint) }
paint.style = Paint.Style.FILL
"+fl.toString(), location.get(x+1)*w, location.get(x+1)*h, paint)
}

yourpersonalmicrocontrolle