natsuite
Realtime pose detection in 3D with augmented reality.
Importing the Predictor
Follow the setup instructions on the predictor implementation.
Using the Predictor
// Fetch model data from NatML var modelData = await MLModelData.FromHub("@natsuite/movenet-3d"); // Deserialize the model var model = await MLEdgeModel.Create(modelData); // Create the predictor var predictor = new MoveNet3DPredictor(model);
References