# Raspberry_ObjectDetection_Camera **Repository Path**: xll_98/Raspberry_ObjectDetection_Camera ## Basic Information - **Project Name**: Raspberry_ObjectDetection_Camera - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-05-26 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Raspberry_ObjectDetection_Camera Tensorflow ObjectDetectionAPI on Raspberry3B+, OpenCV, SSDmobile ## 1.Download SSDmobile model and Install Tensorflow
# Install TF1.8.0
pip install tensorflow-1.8.0-cp27-none-linux_armv7l.whl
# Get model
tar -xzvf ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz .
[Link: TensorFlow on arm](https://github.com/lhelontra/tensorflow-on-arm/releases),
[Link: SSD mobile](http://download.tensorflow.org/models/object_detection/ssdlite_mobilenet_v2_coco_2018_05_09.tar.gz),
[Model Zoo](https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md)
## 2.Install OpenCV for python
pip install opencv-python
## 3.Test By default, you will open the camera, display the images captured. Modify the code:TEST_CAM_ONLY = False
And run the Object Detection Demo.
python opencv_camera.py
Have Fun with Raspi!