|
| RawCvSource ()=default |
|
| RawCvSource (std::string_view name, const VideoMode &mode) |
| Create a Raw OpenCV source. More...
|
|
| RawCvSource (std::string_view name, VideoMode::PixelFormat pixelFormat, int width, int height, int fps) |
| Create a Raw OpenCV source. More...
|
|
void | PutFrame (cv::Mat &image) |
| Put an OpenCV image and notify sinks. More...
|
|
| RawSource ()=default |
|
| RawSource (std::string_view name, const VideoMode &mode) |
| Create a raw frame source. More...
|
|
| RawSource (std::string_view name, VideoMode::PixelFormat pixelFormat, int width, int height, int fps) |
| Create a raw frame source. More...
|
|
void | NotifyError (std::string_view msg) |
| Signal sinks that an error has occurred. More...
|
|
void | SetConnected (bool connected) |
| Set source connection status. More...
|
|
void | SetDescription (std::string_view description) |
| Set source description. More...
|
|
VideoProperty | CreateProperty (std::string_view name, VideoProperty::Kind kind, int minimum, int maximum, int step, int defaultValue, int value) |
| Create a property. More...
|
|
VideoProperty | CreateIntegerProperty (std::string_view name, int minimum, int maximum, int step, int defaultValue, int value) |
| Create an integer property. More...
|
|
VideoProperty | CreateBooleanProperty (std::string_view name, bool defaultValue, bool value) |
| Create a boolean property. More...
|
|
VideoProperty | CreateStringProperty (std::string_view name, std::string_view value) |
| Create a string property. More...
|
|
void | SetEnumPropertyChoices (const VideoProperty &property, std::span< const std::string > choices) |
| Configure enum property choices. More...
|
|
template<typename T > |
void | SetEnumPropertyChoices (const VideoProperty &property, std::initializer_list< T > choices) |
| Configure enum property choices. More...
|
|
| VideoSource () noexcept=default |
|
| VideoSource (const VideoSource &source) |
|
| VideoSource (VideoSource &&other) noexcept |
|
VideoSource & | operator= (VideoSource other) noexcept |
|
| ~VideoSource () |
|
| operator bool () const |
|
int | GetHandle () const |
|
bool | operator== (const VideoSource &other) const |
|
Kind | GetKind () const |
| Get the kind of the source. More...
|
|
std::string | GetName () const |
| Get the name of the source. More...
|
|
std::string | GetDescription () const |
| Get the source description. More...
|
|
uint64_t | GetLastFrameTime () const |
| Get the last time a frame was captured. More...
|
|
void | SetConnectionStrategy (ConnectionStrategy strategy) |
| Sets the connection strategy. More...
|
|
bool | IsConnected () const |
| Is the source currently connected to whatever is providing the images? More...
|
|
bool | IsEnabled () const |
| Gets source enable status. More...
|
|
VideoProperty | GetProperty (std::string_view name) |
| Get a property. More...
|
|
std::vector< VideoProperty > | EnumerateProperties () const |
| Enumerate all properties of this source. More...
|
|
VideoMode | GetVideoMode () const |
| Get the current video mode. More...
|
|
bool | SetVideoMode (const VideoMode &mode) |
| Set the video mode. More...
|
|
bool | SetVideoMode (VideoMode::PixelFormat pixelFormat, int width, int height, int fps) |
| Set the video mode. More...
|
|
bool | SetPixelFormat (VideoMode::PixelFormat pixelFormat) |
| Set the pixel format. More...
|
|
bool | SetResolution (int width, int height) |
| Set the resolution. More...
|
|
bool | SetFPS (int fps) |
| Set the frames per second (FPS). More...
|
|
bool | SetConfigJson (std::string_view config) |
| Set video mode and properties from a JSON configuration string. More...
|
|
bool | SetConfigJson (const wpi::json &config) |
| Set video mode and properties from a JSON configuration object. More...
|
|
std::string | GetConfigJson () const |
| Get a JSON configuration string. More...
|
|
wpi::json | GetConfigJsonObject () const |
| Get a JSON configuration object. More...
|
|
double | GetActualFPS () const |
| Get the actual FPS. More...
|
|
double | GetActualDataRate () const |
| Get the data rate (in bytes per second). More...
|
|
std::vector< VideoMode > | EnumerateVideoModes () const |
| Enumerate all known video modes for this source. More...
|
|
CS_Status | GetLastStatus () const |
|
std::vector< VideoSink > | EnumerateSinks () |
| Enumerate all sinks connected to this source. More...
|
|
A source for using the raw frame API to provide opencv images.
If you are using the WPILib OpenCV builds, do not use this, and instead include "cscore_cv.h" to get a more performant version.
This is not dependent on any opencv binary ABI, and can be used with versions of OpenCV that are not 3. If using OpenCV 3, use CvSource.