View Single Post
  #1   Spotlight this post!  
Unread 22-01-2012, 14:36
xmendude217 xmendude217 is offline
Registered User
FRC #3851
 
Join Date: Jan 2011
Location: Canoga Park, California 91303
Posts: 7
xmendude217 is an unknown quantity at this point
Custom Jar files not showing in SmartDashboard

Im trying to use the WPILib Cookbook's example for getting vision tracking done the SmartDashboard, yet whenever I build the jar and place it in the SmartDashboard's extension folder, I can't see it in the SmartDashboard's "Add" submenu. Here's the code for the jar :


Code:
public class VisionSystem extends WPICameraExtension {
    @Override
    public WPIImage processImage(WPIColorImage rawImage) {
        return rawImage.getBlueChannel();
         }
}

Last edited by xmendude217 : 22-01-2012 at 14:59.
Reply With Quote