hiukim / mind-ar-js

Web Augmented Reality. Image Tracking, Face Tracking. Tensorflow.js
MIT License
2.13k stars 391 forks source link

Is Tracking Config possible outside of A-Frame? #505

Open masonpajunas opened 3 months ago

masonpajunas commented 3 months ago

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?

LoveDotMarketing commented 3 months ago

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

    });