Get
Creative
withMachine Learning
in Processing.
Experiment with Machine Learning in Processing.
Detect different objects in an image with its name and location
Real-time face detection on image or live video
Pose detection with location of each body part
How it works in code
// Initialize an object detector model
ObjectDetector detector = new ObjectDetector(this, "coco_ssd");
// Load an input image
PImage img = loadImage("dog_bike_car.jpeg");
// Run object detection
MLObject[] output = detector.detect(img);
Get Started with Creative Machine 🤖
📖 How to Import Creative Machine in your Processing application