eduardolundgren / tracking.js

A modern approach for Computer Vision on the web
http://trackingjs.com
Other
9.43k stars 1.44k forks source link

Always defaults to 4:3 #217

Open kobydo opened 7 years ago

kobydo commented 7 years ago

Why when performing the following code, why does the #vid element always default back to 4:3 reolution?

    tracker.setInitialScale(4);
    tracker.setStepSize(2);
    tracker.setEdgesDensity(0.1);

    trackerTask = tracking.track('#vid', tracker, { camera: true });