hiukim / mind-ar-js

Web Augmented Reality. Image Tracking, Face Tracking. Tensorflow.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is Tracking Config possible outside of A-Frame?

masonpajunas opened this issue · comments

I am using the THREE.js installation method for Image tracking and would like to adjust the smoothing control but the documentation only provides examples of how to change the values of filterMinCF and filterBeta while using a-frame.

Is there any way of similarly adjusting without using a-frame?

Was wondering this as well and found those parameters inside MindARThree().
However, I do not see a difference when changing the values. Things still seem jittery in image tracking.

const mindarThree = new MindARThree({

      container: containerRef.current,
      imageTargetSrc: "/business-card.mind",
      filterMinCF: 1.0,
      filterBeta: 10000

    });