View Single Post
  #1   Spotlight this post!  
Unread 26-01-2013, 20:17
dhe95 dhe95 is offline
Registered User
FRC #2637 (Panthers)
Team Role: Programmer
 
Join Date: May 2012
Rookie Year: 2012
Location: California
Posts: 9
dhe95 is an unknown quantity at this point
Camera Extension not appearing in SmartDashboard

Our team is trying to write our own custom image processing extension for SmartDashboard but whenever we compile and move the .jar to the extensions folder, nothing shows up in the add menu.

Here is the code we are using
Code:
import edu.wpi.first.smartdashboard.camera.WPICameraExtension;
import edu.wpi.first.wpijavacv.WPIColorImage;
import edu.wpi.first.wpijavacv.WPIImage;

public class VisionSystem extends WPICameraExtension {

    @Override
    public WPIImage processImage(WPIColorImage rawImage) {
        return rawImage.getRedChannel();
    }
}
Any suggestions?
Reply With Quote