According from this guide from ARToolkit, the default marker pattern size is 16x16. Is it possible to be able to modify it to 32x32 in JSARToolkit?
How to change the default marker pattern size in JSARToolkit
517 Views Asked by Angelo Joseph Salvador At
1
There are 1 best solutions below
Related Questions in ARTOOLKIT
- How can I get/create camera calibration files for jsartoolkit?
- How to use artoolkitx_genMarkerSet in artoolkitx?
- where can I find the ARToolKit v6 source code?
- Why does my video only play sound and no video with ARJS?
- AR Image Tracking: Unable to create NFT feature and image sets with Carnaux's Node.js app
- Unity Android Build Works in Mono but Fails in IL2CPP due to Undefined References, Missing Library
- OpenGL ES: Rotate the complete scene to match portrait mode
- Using OpenCV in ARToolkit5 (Linux)
- Is Aruco a good Marker for high precision pose etimation? If so which dictionnary should i use?
- How to improve marker detection on mobile browser with AR.js
- Issue with webpack in production mode ( minification issue )
- Aframe Multiple Pattern Ratio
- react-web-ar - Rendering component containing AFrameRenderer gives Uncaught Error
- How is marker recognition done in ar.js? How can we improve recognition efficiency?
- Using AFrame And ARJs I Want To Augment An Image On A Marker . When I Click Or Touch (Desktop & Mobile) The Image Then It Should Navigate To An URL
Related Questions in AR.JS
- Openstreetmap data in AR.js + Three.js
- Requesting support in implementing AR.js coding sequences; "Loading" issue
- AR.js text gets hidden by sphere below it
- how to decompress khr_draco_mesh_compression in a-frame (ar.js)?
- How can I solve Error in loading marker on worker 404
- how to create image tracker with ar.js
- Struggling with custom markers in AR.JS
- Browser interaction to trigger video playback
- how to use Ar.js in react pwa?
- Play audio once when target is found A-frame & Ar.js
- Virtual canvas with at.js
- AR.js doesn't show the AR image
- A-Frame I can't detect the marker in javascript
- Im working on AFrame and AR.js for Business card , i want to add a link inside the scene as a button or 3d model
- Feature extraction with webar coloring
Related Questions in JSARTOOLKIT
- How can I get/create camera calibration files for jsartoolkit?
- How to upload AR marker creator to server?
- Issue with webpack in production mode ( minification issue )
- How to get marker position (x,y) AR.js
- Any way to handle more than one multimarker area in AR.js / A-Frame?
- In Aframe AR.js Show A Preloading Screen Till All The Assets Loads And Renders
- In AR.js When Load Model ,Show A Loading Screen
- In A-Frame Ar.Js When We Load A Video on A Pattern, I Want Some Progress Bar Buffering (Like Youtube Video Navigator Controls) Controls
- I Want To Load Entity To Animate
- AFrame - Is it possible to replace the marker with a custom image without the black border?
- AR.js distorted perspective: How to use a personalized camera calibration file `camera_para.dat` so that the "floor" plane is horizontal?
- Any way to make AR.js camera less sensitive to movement?
- How to get position of a threejs mesh using jsartoolkit?
- How to change the default marker pattern size in JSARToolkit
- Change default border thickness of a square marker in ARToolkit
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You would need to add the
arPattCreateHandle2function to the emscripten bindings https://github.com/artoolkitx/jsartoolkit5/blob/master/emscripten/ARBindEM.cppsimilar to, for example, this function https://github.com/artoolkitx/jsartoolkit5/blob/master/emscripten/ARBindEM.cpp#L67
And write a binding function for it in
ARToolKitJS.cpplike here https://github.com/artoolkitx/jsartoolkit5/blob/master/emscripten/ARToolKitJS.cpp#L482I think you also need to add it to the
FUNCTIONSarray (https://github.com/artoolkitx/jsartoolkit5/blob/master/js/artoolkit.api.js#L1578)Then you need to rebuild the library using emscripten. For rebuild I wrote the guide in the readme on artoolkitX (https://github.com/artoolkitx/jsartoolkit5) which is easiest to follow if you use the Docker root. Otherwise, you need to setup emscripten on your local machine.
If you already use emscripten locally you can simply do
npm run buildfrom the jsartoolkit root.I'm actively maintaining the artoolkitX repo and I'm certain that it builds meaning you should clone from there.
Let me know how it goes.