I had a similar problem. I got the same error in netbeans, using the code below:
Code:
//in constructor:
AxisCamera cam=AxisCamera.getInstance();
//in teleopPeriodic
try{
ColorImage currentImage=cam.getImage();
cam.writeResolution(AxisCamera.ResolutionT.k320x240);
currentImage.luminanceEqualize();
currentImage.free();
}catch(AxisCameraException c){}
catch(NIVisionException i){}