![]() |
Authentication Failed Axis M1011
I have my code set up to connect to and send camera data to the dashboard. I had it working with the Microsoft LifeCam HD-3000, but when I set it up with an Axis M1011 (since I wanted manual control of exposure and other settings) I got authentication errors. We are programming our robot in Java this year, but in previous years we used LabVIEW. I remember fixing this by setting the camera to either a username/password combo of one of the following:
Code:
FRC, FRCThis is the error: Code:
ERROR Unhandled exception: VisionException [com.ni.vision.VisionException: IMAQdxError: -1074360268: The camera is configured with password authentication and either the user name and password were not configured or they are incorrect.] at [com.ni.vision.NIVision._IMAQdxConfigureGrab(Native Method), com.ni.vision.NIVision.IMAQdxConfigureGrab(NIVision.java:30265), edu.wpi.first.wpilibj.vision.USBCamera.startCapture(USBCamera.java:94), edu.wpi.first.wpilibj.CameraServer.startAutomaticCapture(CameraServer.java:187), org.usfirst.frc.team1124.robot.DashboardConnection.initCamera(DashboardConnection.java:16), org.usfirst.frc.team1124.robot.Robot.robotInit(Robot.java:40), edu.wpi.first.wpilibj.IterativeRobot.startCompetition(IterativeRobot.java:72), edu.wpi.first.wpilibj.RobotBase.main(RobotBase.java:241)]Code:
CameraServer srv = CameraServer.getInstance();Also: When I set it to allow viewing without password (from the axis config page) the Java code spams out this error: Code:
Error when getting image from the camera: IMAQdxError: -1074360306: No acquisition in progress. at edu.wpi.first.wpilibj.CameraServer.capture(CameraServer.java:222) |
Re: Authentication Failed Axis M1011
The AXIS M1011 isn't a USB camera so I suspect the problem is right around here:
Code:
USBCamera camera = new USBCamera("cam1"); |
Re: Authentication Failed Axis M1011
Java is odd, so it actually still uses the USBCamera class for IP cameras, but thanks anyways!
|
Re: Authentication Failed Axis M1011
Try building the Example project,
In Eclipse it can be found in File-> New Project> Example Robot Project -> Vision -> Axis Camera Sample In order for it to work you must follow the setup instructions here http://wpilib.screenstepslive.com/s/...an-axis-camera Best of luck! |
Re: Authentication Failed Axis M1011
Quote:
|
Re: Authentication Failed Axis M1011
I would advise against using the Axis netcam. It has a nasty habit of deciding to stop working for without warning for nebulous reasons. If you can use a USB camera instead, do so.
|
Re: Authentication Failed Axis M1011
Quote:
|
Re: Authentication Failed Axis M1011
Quote:
In short: If you keep them powered up they keep trucking. I have seen one of them flake out after 3 years of service though. Some days it would work and some not. |
Re: Authentication Failed Axis M1011
Quote:
|
Re: Authentication Failed Axis M1011
Quote:
When I set it up I got another error: Code:
ERROR Unhandled exception: VisionException [com.ni.vision.VisionException: imaqError: -1233721680: Unknown error] at [com.ni.vision.NIVision._Priv_ReadJPEGString_C(Native Method), com.ni.vision.NIVision.Priv_ReadJPEGString_C(NIVision.java:29329), edu.wpi.first.wpilibj.vision.AxisCamera.getImage(AxisCamera.java:113), org.usfirst.frc.team1124.robot.dashboard.DashboardConnection.initCamera(DashboardConnection.java:28), org.usfirst.frc.team1124.robot.Robot.robotInit(Robot.java:70), edu.wpi.first.wpilibj.IterativeRobot.startCompetition(IterativeRobot.java:72), edu.wpi.first.wpilibj.RobotBase.main(RobotBase.java:241)] |
Re: Authentication Failed Axis M1011
Note to anyone who has this error in the future:
The axis camera only works when the robot is enabled, so only execute camera.getImage() when the robot is enabled. |
| All times are GMT -5. The time now is 01:09. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi