martinruenz / maskfusion

MaskFusion: Real-Time Recognition, Tracking and Reconstruction of Multiple Moving Objects
http://visual.cs.ucl.ac.uk/pubs/maskfusion/index.html
Other
569 stars 146 forks source link

Fix segfault when accessing vector #14

Closed adrianknobloch closed 5 years ago

adrianknobloch commented 5 years ago

Reserve does not create elements in the vector, thus accessing them using operator[] is not allowed.

martinruenz commented 5 years ago

Thanks!