to close
This tutorial was written in the 2015-16 FRC season Stronghold.
The shipping vision code has changed so much since then that this method is obsolete.
A common desire among FRC teams has been to have multiple cameras on a robot that can easily be switched between, however coding a solution has not been trivial. As a result, my teammate James and I (Dillon), from FRC team 3061, Huskie Robotics, came up with this relatively simple solution.
The basic concept is that we are modifying two WPI camera VIs that handle sending a camera image to the PC. The modification involves changing the VIs to accept multiple camera Device Refs and then iterating the necessary code over the camera Device Reference whose image is needed at that time.
Begin by making a personal and renamed copy of two WPI libraries, which can be found by searching in the LabVIEW project window.
Make a copy of WPI_CameraBackground Loop.vi and call it WPI_DualCameraBackground Loop.vi. Also, make a copy of WPI_CameraSend Images To PC Loop.vi and call it WPI_DualCameraSend Images To PC Loop.vi
Save these somewhere convenient and accessible.
Here is the original Vision Processing.vi for reference:
And now the modified version:
As you can see, several changes were made:
Very little needs to be modified in this VI, as the cameras are always USB and therefore no modification of the case structure is required. Simply add a second Device Reference for your new camera and pass both these Device References to WPI_DualCamerSend Images To PC Loop.vi. Note that creating the second camera Device Reference input for this VI is part of the next step.
Relevant part of original VI:
Modified Portion:
This VI is the most change-heavy, although it is still not very complex. Simply follow the instructions and utilize the snippets to prevent bugs:
First for reference, the original VI:
And the modified version we will achieve:
The list of changes should be easy to follow, but if you are unsure, you can always refer to the snippets above for visual comparisons.
And that is all, you can now easily switch between two camera inputs. In addition, this method should be extendable to even more cameras, and with more effort possibly IP Cameras as well.
Google Form to request details