mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
Also added some references/smart pointers to a couple places that seemed convenient to the user. I haven't updated the constructors for RobotDrive() related examples, pending the results of gerrit change https://usfirst.collab.net/gerrit/#/c/960/ A few things that we are noticing: --It might be nice if ReturnPIDInput() didn't have to be const; when people try to override it, they have to remember to put the const in and if they don't, then the compiler error isn't the most obvious (especially since this is a change). This would also apply to PIDGet() in the PIDSource interface. --SendableChooser still takes raw pointers. This could lead to an issue I had to debug briefly where you accidentally call GetSelected() on autoChooser and put the resulting raw pointer into a unique_ptr, which destroys the pointer when it goes out of scope. Specifically, I was testing the PacGoat example and I ended up with a situation where if auto mode was run once, it was fine, but if it was run twice, the selected command would have been destroyed by the unique_ptr. I believe that this just requires updating SendableChosser to take shared_ptr. --When the samples are compiled with -pedantic, it points out that START_ROBOT_CLASS macro expansion results in a redundant semicolon. Change-Id: Ib4c025a61263d0d2780d4253faa31713e15333a5
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
#include "WPILib.h"
|
|
|
|
/**
|
|
* Uses AxisCamera class to manually acquire a new image each frame, and annotate the image by drawing
|
|
* a circle on it, and show it on the FRC Dashboard.
|
|
*/
|
|
class AxisCameraSample : public SampleRobot
|
|
{
|
|
IMAQdxSession session;
|
|
Image *frame;
|
|
IMAQdxError imaqError;
|
|
std::unique_ptr<AxisCamera> camera;
|
|
|
|
public:
|
|
void RobotInit() override {
|
|
// create an image
|
|
frame = imaqCreateImage(IMAQ_IMAGE_RGB, 0);
|
|
|
|
// open the camera at the IP address assigned. This is the IP address that the camera
|
|
// can be accessed through the web interface.
|
|
camera.reset(new AxisCamera("axis-camera.local"));
|
|
}
|
|
|
|
void OperatorControl() override {
|
|
// grab an image, draw the circle, and provide it for the camera server which will
|
|
// in turn send it to the dashboard.
|
|
while(IsOperatorControl() && IsEnabled()) {
|
|
camera->GetImage(frame);
|
|
imaqDrawShapeOnImage(frame, frame, { 10, 10, 100, 100 }, DrawMode::IMAQ_DRAW_VALUE, ShapeMode::IMAQ_SHAPE_OVAL, 0.0f);
|
|
CameraServer::GetInstance()->SetImage(frame);
|
|
Wait(0.05);
|
|
}
|
|
}
|
|
};
|
|
|
|
START_ROBOT_CLASS(AxisCameraSample)
|
|
|