Files
PhotonVision/photon-lib/src/main/native/include/photon/PhotonCamera.h
2026-05-16 07:41:59 -07:00

291 lines
8.9 KiB
C++

/*
* MIT License
*
* Copyright (c) PhotonVision
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#pragma once
#include <memory>
#include <string>
#include <vector>
#include <wpi/driverstation/Alert.hpp>
#include <wpi/nt/BooleanTopic.hpp>
#include <wpi/nt/DoubleArrayTopic.hpp>
#include <wpi/nt/DoubleTopic.hpp>
#include <wpi/nt/IntegerTopic.hpp>
#include <wpi/nt/MultiSubscriber.hpp>
#include <wpi/nt/NetworkTable.hpp>
#include <wpi/nt/NetworkTableInstance.hpp>
#include <wpi/nt/RawTopic.hpp>
#include <wpi/nt/StringTopic.hpp>
#include <wpi/units/time.hpp>
#include "photon/targeting/PhotonPipelineResult.h"
namespace cv {
class Mat;
} // namespace cv
namespace photon {
enum LEDMode : int { kDefault = -1, kOff = 0, kOn = 1, kBlink = 2 };
/**
* Represents a camera that is connected to PhotonVision.ß
*/
class PhotonCamera {
public:
/**
* Constructs a PhotonCamera from a root table.
*
* @param instance The NetworkTableInstance to pull data from. This can be a
* custom instance in simulation, but should *usually* be the default
* NTInstance from {@link NetworkTableInstance::getDefault}
* @param cameraName The name of the camera, as seen in the UI.
* over.
*/
explicit PhotonCamera(wpi::nt::NetworkTableInstance instance,
const std::string_view cameraName);
/**
* Constructs a PhotonCamera from the name of the camera.
* @param cameraName The nickname of the camera (found in the PhotonVision
* UI).
*/
explicit PhotonCamera(const std::string_view cameraName);
PhotonCamera(PhotonCamera&&) = default;
~PhotonCamera() = default;
/**
* The list of pipeline results sent by PhotonVision since the last call to
* GetAllUnreadResults(). Calling this function clears the internal FIFO
* queue, and multiple calls to GetAllUnreadResults() will return different
* (potentially empty) result arrays. Be careful to call this exactly ONCE per
* loop of your robot code! FIFO depth is limited to 20 changes, so make sure
* to call this frequently enough to avoid old results being discarded, too!
*/
std::vector<PhotonPipelineResult> GetAllUnreadResults();
[[deprecated("Replace with GetAllUnreadResults")]] PhotonPipelineResult
GetLatestResult();
/**
* Toggles driver mode.
* @param driverMode Whether to set driver mode.
*/
void SetDriverMode(bool driverMode);
/**
* Returns whether the camera is in driver mode.
* @return Whether the camera is in driver mode.
*/
bool GetDriverMode() const;
/**
* Sets the FPS limit on the camera.
*
* <p>An FPS of 0 means to pause processing until a FPS limit greater than 0
* is set.
*
* <p>A negative FPS limit is treated as no FPS limit, and will run as fast as
* possible.
*
* <p>Otherwise, will limit processing to at most the provided FPS limit
*
* @param fps The FPS limit to set.
*/
void SetFPSLimit(int fpsLimit);
/**
* @return The FPS limit set on the camera, or -1 if no limit is set.
*/
int GetFPSLimit() const;
/**
* Sets whether the camera is enabled, default is true.
* @param enabled Whether to enable the camera.
*/
void SetEnabled(bool enabled);
/**
* @return Whether the camera is enabled.
*/
bool GetEnabled() const;
/**
* Request the camera to save a new image file from the input
* camera stream with overlays.
* Images take up space in the filesystem of the PhotonCamera.
* Calling it frequently will fill up disk space and eventually
* cause the system to stop working.
* Clear out images in /opt/photonvision/photonvision_config/imgSaves
* frequently to prevent issues.
*/
void TakeInputSnapshot(void);
/**
* Request the camera to save a new image file from the output
* stream with overlays.
* Images take up space in the filesystem of the PhotonCamera.
* Calling it frequently will fill up disk space and eventually
* cause the system to stop working.
* Clear out images in /opt/photonvision/photonvision_config/imgSaves
* frequently to prevent issues.
*/
void TakeOutputSnapshot(void);
/**
* Allows the user to select the active pipeline index.
* @param index The active pipeline index.
*/
void SetPipelineIndex(int index);
/**
* Returns the active pipeline index.
* @return The active pipeline index.
*/
int GetPipelineIndex() const;
/**
* Returns the current LED mode.
* @return The current LED mode.
*/
LEDMode GetLEDMode() const;
/**
* Sets the LED mode.
* @param led The mode to set to.
*/
void SetLEDMode(LEDMode led);
/**
* Returns the name of the camera.
* This will return the same value that was given to the constructor as
* cameraName.
* @return The name of the camera.
*/
const std::string_view GetCameraName() const;
/**
* Returns whether the camera is connected and actively returning new data.
* Connection status is debounced.
*
* @return True if the camera is actively sending frame data, false otherwise.
*/
bool IsConnected();
using CameraMatrix = Eigen::Matrix<double, 3, 3>;
using DistortionMatrix = Eigen::Matrix<double, 8, 1>;
/**
* Get the camera calibration matrix, in standard OpenCV form
*
* @return std::optional<cv::Mat>
*/
std::optional<CameraMatrix> GetCameraMatrix();
/**
* Returns the camera calibration's distortion coefficients, in OPENCV8 form.
* Higher-order terms are set to 0
*
* @return The distortion coefficients in a 8x1 matrix, if they are published
* by the camera. Empty otherwise.
*/
std::optional<DistortionMatrix> GetDistCoeffs();
/**
* Sets whether or not coprocessor version checks will occur. Setting this to
* true will silence all console warnings about coproccessor connection, so be
* careful when enabling this and ensure all your coprocessors are
* communicating to the robot properly and everything has matching versions.
*
* @param enabled Whether or not to enable coprocessor version checks
*/
static void SetVersionCheckEnabled(bool enabled);
std::shared_ptr<wpi::nt::NetworkTable> GetCameraTable() const {
return rootTable;
}
// For use in tests
bool test = false;
std::vector<PhotonPipelineResult> testResult;
protected:
std::shared_ptr<wpi::nt::NetworkTable> mainTable;
std::shared_ptr<wpi::nt::NetworkTable> rootTable;
wpi::nt::RawSubscriber rawBytesEntry;
wpi::nt::IntegerPublisher inputSaveImgEntry;
wpi::nt::IntegerSubscriber inputSaveImgSubscriber;
wpi::nt::IntegerPublisher outputSaveImgEntry;
wpi::nt::IntegerSubscriber outputSaveImgSubscriber;
wpi::nt::IntegerPublisher pipelineIndexPub;
wpi::nt::IntegerSubscriber pipelineIndexSub;
wpi::nt::IntegerPublisher ledModePub;
wpi::nt::IntegerSubscriber ledModeSub;
wpi::nt::StringSubscriber versionEntry;
wpi::nt::DoubleArraySubscriber cameraIntrinsicsSubscriber;
wpi::nt::DoubleArraySubscriber cameraDistortionSubscriber;
wpi::nt::BooleanSubscriber driverModeSubscriber;
wpi::nt::BooleanPublisher driverModePublisher;
wpi::nt::IntegerSubscriber fpsLimitSubscriber;
wpi::nt::IntegerPublisher fpsLimitPublisher;
wpi::nt::BooleanSubscriber enabledSubscriber;
wpi::nt::BooleanPublisher enabledPublisher;
wpi::nt::IntegerSubscriber ledModeSubscriber;
wpi::nt::IntegerSubscriber heartbeatSubscriber;
wpi::nt::MultiSubscriber topicNameSubscriber;
std::string path;
std::string cameraName;
wpi::Alert disconnectAlert;
wpi::Alert timesyncAlert;
private:
wpi::units::second_t lastVersionCheckTime = 0_s;
static bool VERSION_CHECK_ENABLED;
inline static int InstanceCount = 1;
wpi::units::second_t prevTimeSyncWarnTime = 0_s;
int prevHeartbeatValue = -1;
wpi::units::second_t prevHeartbeatChangeTime = 0_s;
void VerifyVersion();
void UpdateDisconnectAlert();
void CheckTimeSyncOrWarn(photon::PhotonPipelineResult& result);
std::vector<std::string> tablesThatLookLikePhotonCameras();
};
} // namespace photon