A simple Aruco marker Generator developed on top of NodeJS. It exposes HTTP POST endpoint to make request and get resultant marker in SVG format. Based on work by @bhollis
POST http(s)://<server_url>:8089
{
"id":4,
"size": 300,
"type": "svg"
}
In the parameters provided to the call, type
defines therequested image format. It can be svg or png or jpeg.
The following image shows the same by using Postman.
The app can be spun up pretty quickly using the docker image. To do that you can use the following docker command. The docker image can be found here.
docker run -it -p 8089:8089 wglabz/node-aruco