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
{{ message }}
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.
We are planing to build a SSD (Single Shot MultiBox Detector) demo running on Android and iOS. PaddlePaddle has integrated the SSD algorithm and posted an example to demonstrate how to use the SSD model for object detection, https://github.com/PaddlePaddle/models/tree/develop/ssd.
Goals
To show PaddlePaddle's ability on mobile, we choose to run inference of SSD model on Android and iOS with following goals:
Build a demo application which can use mobile's camera to capture images and show detected objects to users.
Run fast enough to show the results in real-time.
Tasks
Training SSD model based on mobilenet, with input image of size 224 x 224 (@NHZlX , 2017-11-13)
We are planing to build a SSD (Single Shot MultiBox Detector) demo running on Android and iOS. PaddlePaddle has integrated the SSD algorithm and posted an example to demonstrate how to use the SSD model for object detection, https://github.com/PaddlePaddle/models/tree/develop/ssd.
Goals
To show PaddlePaddle's ability on mobile, we choose to run inference of SSD model on Android and iOS with following goals:
Tasks
300 x 300
, means[104, 117, 124]
ImageRecoginizer
with three inferfaces:init()
,infer()
,release()
Details
Input: pixels of a colored image
[RRRRRR][GGGGGG][BBBBBB]
Output
The inference's output type is
paddle_matrix
. The height of the matrix is the number of detected objects, and the width is fixed to 7.0.0
.person
.(xmin, ymin, xmax, ymax)
, the relative coordinate of the rectangle.Show
The rectangle, category, and score of the detected objects are wished to be correctly shown, like
Reference
The text was updated successfully, but these errors were encountered: