artoolkitx / jsartoolkit5

Javascript ARToolKit v5.x

Home Page:https://artoolkitx.github.io/jsartoolkit5/examples/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

how to improve NFT market detection accuracy?

kalyanraju opened this issue · comments

Hi Awesome guys,

I really love NFT marker feature and we implemented and got great results,

i am trying to match exact image marker.
our marker contains 3743E on some solid background, its scanned and tracked properly, where as we have another marker 3743E-BE457 on same background, this is also getting tracked. i want to scan 100% exact match. is there a way with threshold, mode, or pattern parameters? i tried setting these from the comments in artoolkit.api.js but still its tracking 2nd marker.

Looking forward for any suggestions.

Hi @kalyanraju thanks to reporting this, first actually we have not tested NFT as multi markers in the same app, so issues may arise, and probably some changes are needed in the C++ code to optimize the tracking and the managing of data. You are also refering to colors but NFT get imageData as BW (black-white) in the sense of gray colors. I don't know if changing the threshold may impact on the NFT detection, and same for changing the mode or pattern parameters (this last i have strong doubts for NFT) I think that the most important factor is the quality of the marker and how many features keys/points has in it. You can test and display how many features sets has a marker with the dispFeatureSet and to display the ImageSet with the dispImageSet.
You can build the utilities from the Artoolkit5 source code or you can grab the binaries of the all apps from the release page

Thank you