intel / node-realsense

MIT License
24 stars 21 forks source link

Consider carefully whether changing tracker options at runtime makes sense #211

Open kenchris opened 7 years ago

kenchris commented 7 years ago

It might be just as efficient to create another one and stop the old one.

Also, bulk setting options is very web unlike, so you would then instead have to expose each option variable as a property instead

let tracker = new PersonTracker({ inventedOption: true })

tracker.inventedOption = false;