Deployment - JavaScript/TypeScript
Deploy your Kinetix ML pipeline to JavaScript or TypeScript in less than 5 minutes.
Install the Library
Kinetix ML should be installed as a node module using the command below.
There is a known issue with Tensorflow JS dependencies when installing using the npm command so please use yarn. They are for the most part interoperable.
Initialization
First start by importing the module.
Create the pipeline object using your API Key and project name.
Initialize the pipeline.
Execution
To execute the pipeline you need to run the execute method with the required input data.
Webcam Inference
The pipeline will need a data source for each of its inputs. A common input is image data for nodes such as PoseDetection2D. For these nodes you should first create a video source element.
Now we need to make a function that we can call for every frame
Then, to use your webcam, run the following function which will ask the user for webcam permission, start playing the video, and start inference.