depthai 0.1.3

Experimental Rust bindings and idiomatic wrapper for Luxonis DepthAI-Core v3.
Documentation
/// Example demonstrating the generic `Pipeline::create*` API.
///
/// This example shows:
/// - typed creation (`CameraNode`)
/// - and how to build a small “composite” using generic nodes (string name + `Node::link`)
use depthai::camera::{CameraNode, CameraOutputConfig};
use depthai::common::CameraBoardSocket;
use depthai::device::Device;
use depthai::pipeline::Pipeline;
use depthai::Result;

fn main() -> Result<()> {
    println!("Creating pipeline with generic create_with() API...");
    
    // Create device (single connection)
    let device = Device::new()?;

    // Create pipeline bound to that device (matches DepthAI C++ `Pipeline(device)`)
    let pipeline = Pipeline::new().with_device(&device).build()?;
    
    // Using the generic create_with API for creating camera nodes
    let left = pipeline.create_with::<CameraNode, _>(CameraBoardSocket::CamB)?;
    let right = pipeline.create_with::<CameraNode, _>(CameraBoardSocket::CamC)?;
    
    println!("Created left camera node");
    println!("Created right camera node");
    
    // Configure camera outputs
    let left_config = CameraOutputConfig::new((640, 400));
    let _left_output = left.request_output(left_config)?;
    
    let right_config = CameraOutputConfig::new((640, 400));
    let _right_output = right.request_output(right_config)?;
    
    println!("Configured camera outputs");

    // Demonstrate the generic node API: create a StereoDepth node and link the cameras into it.
    // (StereoDepth expects inputs named "left" and "right".)
    let stereo = pipeline.create_node("dai::node::StereoDepth")?;
    left.as_node().link(None, None, &stereo, None, Some("left"))?;
    right.as_node().link(None, None, &stereo, None, Some("right"))?;
    println!("Linked cameras into StereoDepth");
    
    // Start the pipeline (mirrors DepthAI C++: pipeline.start())
    pipeline.start()?;
    println!("Pipeline started successfully!");
    
    Ok(())
}