View Single Post
  #2   Spotlight this post!  
Unread 17-01-2011, 16:48
Robototes2412's Avatar
Robototes2412 Robototes2412 is offline
1 * 4 != 14
FRC #2412 (Robototes)
Team Role: Programmer
 
Join Date: Jan 2010
Rookie Year: 2007
Location: Bellevue
Posts: 312
Robototes2412 is on a distinguished road
Re: Picture to Driver Station

just import the vision stuff and make an axiscamera object

Code:
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
Reply With Quote