update readme

This commit is contained in:
blakeblackshear 2019-02-19 06:47:37 -06:00
parent b6547de82c
commit c43d83be20

View File

@ -45,7 +45,7 @@ Access the mjpeg stream at http://localhost:5000
- [ ] Add ability to turn detection on and off via MQTT - [ ] Add ability to turn detection on and off via MQTT
- [ ] Add a max size for motion and objects (height/width > 1.5, total area > 1500 and < 100,000) - [ ] Add a max size for motion and objects (height/width > 1.5, total area > 1500 and < 100,000)
- [ ] Make motion less sensitive to rain - [ ] Make motion less sensitive to rain
- [ ] Use Events or Conditions to signal between threads rather than polling a value - [x] Use Events or Conditions to signal between threads rather than polling a value
- [ ] Implement a debug option to save images with detected objects - [ ] Implement a debug option to save images with detected objects
- [ ] Only report if x% of the recent frames have a person to avoid single frame false positives (maybe take an average of the person scores in the past x frames?) - [ ] Only report if x% of the recent frames have a person to avoid single frame false positives (maybe take an average of the person scores in the past x frames?)
- [ ] Filter out detected objects that are not the right size - [ ] Filter out detected objects that are not the right size
@ -53,6 +53,7 @@ Access the mjpeg stream at http://localhost:5000
- [ ] Merge bounding boxes that span multiple regions - [ ] Merge bounding boxes that span multiple regions
- [ ] Switch to a config file - [ ] Switch to a config file
- [ ] Allow motion regions to be different than object detection regions - [ ] Allow motion regions to be different than object detection regions
- [ ] Add motion detection masking
- [x] Change color of bounding box if motion detected - [x] Change color of bounding box if motion detected
- [x] Look for a subset of object types - [x] Look for a subset of object types
- [ ] Try and reduce CPU usage by simplifying the tensorflow model to just include the objects we care about - [ ] Try and reduce CPU usage by simplifying the tensorflow model to just include the objects we care about