Coder Social home page Coder Social logo

radar_obj_det_v2's Introduction

Instruction for Running TFLite Models on Raspberry Pi

1. Install the requirements.

pip install -U -r ./requirements.txt

2. Verify the label map.

Verify the labelmap.txt contains correct object classes.

3. Run the object detection live from camera using TFLite model.

python live_detection_tflite.py

Adjust the following variables:

  • flip: Set this to True or False depending on your camera orientation. Try this by experiment.
  • model_path: path to the tflite model to use.
  • input_size: Input size of selected tflite model:
  • model_type: type 'efficientdet' or 'retinanet' according to selected tflite model
  • det_score_threshold: detection confidence threshold. Based on my observation, for efficientdet: Try 0.6-0.7, for retinanet: Try 0.5-0.6.

Detection outputs

The following lines of codes in live_detection_tflite.py is the result of detection from each frame. Use it accordingly.

For Efficientdet

# Bounding boxes coordinates
bboxes = interpreter.get_tensor(interpreter_output[1]['index'])[0]
# Detected objects class ID
class_id = interpreter.get_tensor(interpreter_output[3]['index'])[0]
# Detection scores
scores = interpreter.get_tensor(interpreter_output[0]['index'])[0]

For Retinanet

# Bounding boxes coordinates
bboxes = interpreter.get_tensor(interpreter_output[1]['index'])[0]
# Detected objects class ID
class_id = interpreter.get_tensor(interpreter_output[2]['index'])[0]
# Detection scores
scores = interpreter.get_tensor(interpreter_output[3]['index'])[0]

4. Run the object detection live from camera using YOLO model.

python live_detection_yolo.py

Adjust the following variables:

  • flip: Set this to True or False depending on your camera orientation. Try this by experiment.
  • model_path: path to the tflite model to use.
  • input_size: Input size of selected tflite model:
  • det_score_threshold: detection confidence threshold.

radar_obj_det_v2's People

Contributors

vilerareza avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.