Skip to content

Latest commit

 

History

History
30 lines (19 loc) · 870 Bytes

README.md

File metadata and controls

30 lines (19 loc) · 870 Bytes

Aruco Marker Generator using NodeJS with HTTP endpoint

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

HTTP Endpoint

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.

Usage / Installation

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