Picture to Driver Station

We are looking through the Java documentation and haven’t found out how to display a picture on the Driver Station. Has anyone found it?

just import the vision stuff and make an axiscamera object

import edu.wpi.first.wpilibj.camera.*;

/**
 *
 * @author sam
 */
public class Camera {
    private AxisCamera cam = AxisCamera.getInstance();
    
    private double] rad = new double[7];

    public Camera() {
        System.out.println("Camera is enabled");
    }
    
}

that’s what i used

Thank You

You’re welcome, its good the take code like that out of the closet and put it to good use