|
|
|
![]() |
|
|||||||
|
||||||||
![]() |
|
|
Thread Tools | Rate Thread | Display Modes |
|
|
|
#1
|
|||
|
|||
|
Robot drive and camera interaction not working
I a currently working on a program that will use the camera to guide the robot, but the problem is I can't get it to work. When I try the drive or the camera separately, it works without an issue, but when I use one to control the other, it does not work and it fills my console with
Code:
"Robot Drive... Output not updated often enough." Code:
AxisCamera camera; // the axis camera object (connected to the switch)
CriteriaCollection cc; // the criteria for doing the particle filter operation
RobotDrive drive;
public void robotInit() {
camera = AxisCamera.getInstance(); // get an instance ofthe camera
cc = new CriteriaCollection(); // create the criteria for the particle filter
cc.addCriteria(MeasurementType.IMAQ_MT_BOUNDING_RECT_WIDTH, 30, 400, false);
cc.addCriteria(MeasurementType.IMAQ_MT_BOUNDING_RECT_HEIGHT, 40, 400, false);
drive = new RobotDrive(1, 3);
}
public void autonomous() {
while (isAutonomous() && isEnabled()) {
try
{
ColorImage image = camera.getImage();
BinaryImage thresholdImage = image.thresholdRGB(0, 45, 25, 255, 0, 47);
BinaryImage bigObjectsImage = thresholdImage.removeSmallObjects(false, 2);
BinaryImage convexHullImage = bigObjectsImage.convexHull(false);
BinaryImage filteredImage = convexHullImage.particleFilter(cc);
ParticleAnalysisReport[] reports = filteredImage.getOrderedParticleAnalysisReports();
if(reports.length > 0)
{
if(reports[0].center_mass_x > image.getWidth() / 2 + 10)
drive.arcadeDrive(0, 1);
else if(reports[0].center_mass_x < image.getWidth() / 2 - 10)
drive.arcadeDrive(0, -1);
else
drive.arcadeDrive(0, 0);
}
filteredImage.free();
convexHullImage.free();
bigObjectsImage.free();
thresholdImage.free();
image.free();
} catch (NIVisionException ex) {
ex.printStackTrace();
} catch (AxisCameraException e) {
e.printStackTrace();
}
}
}
|
|
#2
|
||||||
|
||||||
|
Re: Robot drive and camera interaction not working
My guess is that processing the camera image is taking longer then the frequency of the driver station packets (20 ms). Have you tried timing each of the operations? You might have to break up the processing for each step (1st time through the loop get the image, 2nd time through the loop threshold the image, etc).
|
|
#3
|
||||
|
||||
|
Re: Robot drive and camera interaction not working
Try putting this at the end of autonomous
Timer.delay(1); |
|
#4
|
||||||
|
||||||
|
Re: Robot drive and camera interaction not working
Another thing is that if reports.length is 0, you won't call the RobotDrive, which will cause that message.
|
|
#5
|
||||
|
||||
|
Re: Robot drive and camera interaction not working
True. Your criteria are quite strict for a 160x120 camera
|
|
#6
|
|||
|
|||
|
Re: Robot drive and camera interaction not working
I did put an if in case it was zero, and the resolution is higher. I had tested it and there was always at least one rectangle
|
|
#7
|
||||
|
||||
|
Re: Robot drive and camera interaction not working
Quote:
drive.setSafetyEnabled(false) |
![]() |
| Thread Tools | |
| Display Modes | Rate This Thread |
|
|