5#ifndef CSCORE_CSCORE_OO_H_
6#define CSCORE_CSCORE_OO_H_
8#include <initializer_list>
59 explicit operator bool()
const {
return m_kind !=
kNone; }
135 explicit operator
bool()
const {
return m_handle != 0; }
526 template <
typename T>
541 void SetUrls(std::span<const std::string> urls);
546 template <
typename T>
547 void SetUrls(std::initializer_list<T> urls);
552 std::vector<std::string>
GetUrls()
const;
560 static std::vector<std::string> HostToUrl(std::span<const std::string> hosts);
561 template <
typename T>
562 static std::vector<std::string> HostToUrl(std::initializer_list<T> hosts);
603 template <
typename T>
650 int minimum,
int maximum,
int step,
651 int defaultValue,
int value);
665 int maximum,
int step,
int defaultValue,
696 std::span<const std::string> choices);
704 template <
typename T>
706 std::initializer_list<T> choices);
729 explicit operator
bool()
const {
return m_handle != 0; }
1006 int eventMask,
bool immediateNotify);
and restrictions which apply to each piece of software is included later in this file and or inside of the individual applicable source files The disclaimer of warranty in the WPILib license above applies to all code in and nothing in any of the other licenses gives permission to use the names of FIRST nor the names of the WPILib contributors to endorse or promote products derived from this software The following pieces of software have additional or alternate and or Google Inc All rights reserved Redistribution and use in source and binary with or without are permitted provided that the following conditions are this list of conditions and the following disclaimer *Redistributions in binary form must reproduce the above copyright this list of conditions and the following disclaimer in the documentation and or other materials provided with the distribution *Neither the name of Google Inc nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS AS IS AND ANY EXPRESS OR IMPLIED BUT NOT LIMITED THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY OR CONSEQUENTIAL WHETHER IN STRICT OR EVEN IF ADVISED OF THE POSSIBILITY OF SUCH January AND DISTRIBUTION Definitions License shall mean the terms and conditions for and distribution as defined by Sections through of this document Licensor shall mean the copyright owner or entity authorized by the copyright owner that is granting the License Legal Entity shall mean the union of the acting entity and all other entities that control are controlled by or are under common control with that entity For the purposes of this definition control direct or to cause the direction or management of such whether by contract or including but not limited to software source documentation source
Definition: ThirdPartyNotices.txt:111
A source that represents an Axis IP camera.
Definition: cscore_oo.h:558
AxisCamera(std::string_view name, std::string_view host)
Create a source for an Axis IP camera.
Definition: cscore_oo.inc:374
A source that represents a MJPEG-over-HTTP (IP) camera.
Definition: cscore_oo.h:470
HttpCamera(std::string_view name, std::string_view url, HttpCameraKind kind=kUnknown)
Create a source for a MJPEG-over-HTTP (IP) camera.
Definition: cscore_oo.inc:286
std::vector< std::string > GetUrls() const
Get the URLs used to connect to the camera.
Definition: cscore_oo.inc:348
void SetUrls(std::span< const std::string > urls)
Change the URLs used to connect to the camera.
Definition: cscore_oo.inc:332
HttpCameraKind
Definition: cscore_oo.h:472
@ kMJPGStreamer
Definition: cscore_oo.h:474
@ kCSCore
Definition: cscore_oo.h:475
@ kAxis
Definition: cscore_oo.h:476
@ kUnknown
Definition: cscore_oo.h:473
HttpCameraKind GetHttpCameraKind() const
Get the kind of HTTP camera.
Definition: cscore_oo.inc:326
A base class for single image reading sinks.
Definition: cscore_oo.h:940
void SetEnabled(bool enabled)
Enable or disable getting new frames.
Definition: cscore_oo.inc:595
std::string GetError() const
Get error string.
Definition: cscore_oo.inc:590
void SetDescription(std::string_view description)
Set sink description.
Definition: cscore_oo.inc:585
A base class for single image providing sources.
Definition: cscore_oo.h:610
VideoProperty CreateBooleanProperty(std::string_view name, bool defaultValue, bool value)
Create a boolean property.
Definition: cscore_oo.inc:431
void SetDescription(std::string_view description)
Set source description.
Definition: cscore_oo.inc:402
VideoProperty CreateIntegerProperty(std::string_view name, int minimum, int maximum, int step, int defaultValue, int value)
Create an integer property.
Definition: cscore_oo.inc:418
VideoProperty CreateProperty(std::string_view name, VideoProperty::Kind kind, int minimum, int maximum, int step, int defaultValue, int value)
Create a property.
Definition: cscore_oo.inc:407
void SetConnected(bool connected)
Set source connection status.
Definition: cscore_oo.inc:397
VideoProperty CreateStringProperty(std::string_view name, std::string_view value)
Create a string property.
Definition: cscore_oo.inc:442
void NotifyError(std::string_view msg)
Signal sinks that an error has occurred.
Definition: cscore_oo.inc:392
void SetEnumPropertyChoices(const VideoProperty &property, std::span< const std::string > choices)
Configure enum property choices.
Definition: cscore_oo.inc:454
A sink that acts as a MJPEG-over-HTTP network server.
Definition: cscore_oo.h:860
void SetFPS(int fps)
Set the stream frames per second (FPS) for clients that don't specify it.
Definition: cscore_oo.inc:568
void SetResolution(int width, int height)
Set the stream resolution for clients that don't specify it.
Definition: cscore_oo.inc:561
std::string GetListenAddress() const
Get the listen address of the server.
Definition: cscore_oo.inc:551
MjpegServer(std::string_view name, int port)
Create a MJPEG-over-HTTP server sink.
Definition: cscore_oo.h:879
void SetDefaultCompression(int quality)
Set the default compression used for non-MJPEG sources.
Definition: cscore_oo.inc:579
void SetCompression(int quality)
Set the compression for clients that don't specify it.
Definition: cscore_oo.inc:573
int GetPort() const
Get the port number of the server.
Definition: cscore_oo.inc:556
A source that represents a USB camera.
Definition: cscore_oo.h:417
UsbCameraInfo GetInfo() const
Get the full camera information for the device.
Definition: cscore_oo.inc:275
static std::vector< UsbCameraInfo > EnumerateUsbCameras()
Enumerate USB cameras on the local system.
Definition: cscore_oo.inc:260
std::string GetPath() const
Get the path to the device.
Definition: cscore_oo.inc:270
void SetConnectVerbose(int level)
Set how verbose the camera connection messages are.
Definition: cscore_oo.inc:280
void SetPath(std::string_view path)
Change the path to the device.
Definition: cscore_oo.inc:265
A source that represents a video camera.
Definition: cscore_oo.h:358
VideoCamera(CS_Source handle)
Definition: cscore_oo.h:411
void SetExposureAuto()
Set the exposure to auto aperature.
Definition: cscore_oo.inc:237
void SetWhiteBalanceManual(int value)
Set the white balance to manual, with specified color temperature.
Definition: cscore_oo.inc:232
void SetWhiteBalanceAuto()
Set the white balance to auto.
Definition: cscore_oo.inc:222
int GetBrightness()
Get the brightness, as a percentage (0-100).
Definition: cscore_oo.inc:217
void SetBrightness(int brightness)
Set the brightness, as a percentage (0-100).
Definition: cscore_oo.inc:212
void SetWhiteBalanceHoldCurrent()
Set the white balance to hold current.
Definition: cscore_oo.inc:227
void SetExposureManual(int value)
Set the exposure to manual, as a percentage (0-100).
Definition: cscore_oo.inc:247
WhiteBalance
Definition: cscore_oo.h:360
@ kFixedOutdoor1
Definition: cscore_oo.h:362
@ kFixedFlourescent2
Definition: cscore_oo.h:365
@ kFixedIndoor
Definition: cscore_oo.h:361
@ kFixedFluorescent1
Definition: cscore_oo.h:364
@ kFixedOutdoor2
Definition: cscore_oo.h:363
void SetExposureHoldCurrent()
Set the exposure to hold current.
Definition: cscore_oo.inc:242
An event generated by the library and provided to event listeners.
Definition: cscore_oo.h:971
VideoSink GetSink() const
Get the sink associated with the event (if any).
Definition: cscore_oo.inc:605
VideoProperty GetProperty() const
Get the property associated with the event (if any).
Definition: cscore_oo.inc:610
VideoSource GetSource() const
Get the source associated with the event (if any).
Definition: cscore_oo.inc:600
An event listener.
Definition: cscore_oo.h:993
friend void swap(VideoListener &first, VideoListener &second) noexcept
Definition: cscore_oo.h:1014
~VideoListener()
Definition: cscore_oo.inc:636
VideoListener & operator=(const VideoListener &)=delete
VideoListener(const VideoListener &)=delete
A source or sink property.
Definition: cscore_oo.h:38
int GetMin() const
Definition: cscore_oo.inc:32
int Get() const
Definition: cscore_oo.inc:22
bool IsInteger() const
Definition: cscore_oo.h:63
void SetString(std::string_view value)
Definition: cscore_oo.inc:63
bool IsEnum() const
Definition: cscore_oo.h:65
std::string GetName() const
Definition: cscore_oo.inc:17
int GetDefault() const
Definition: cscore_oo.inc:47
Kind
Definition: cscore_oo.h:45
@ kString
Definition: cscore_oo.h:49
@ kInteger
Definition: cscore_oo.h:48
@ kEnum
Definition: cscore_oo.h:50
@ kBoolean
Definition: cscore_oo.h:47
@ kNone
Definition: cscore_oo.h:46
CS_Status GetLastStatus() const
Definition: cscore_oo.h:82
void Set(int value)
Definition: cscore_oo.inc:27
bool IsBoolean() const
Definition: cscore_oo.h:62
std::vector< std::string > GetChoices() const
Definition: cscore_oo.inc:68
int GetStep() const
Definition: cscore_oo.inc:42
Kind GetKind() const
Definition: cscore_oo.h:57
bool IsString() const
Definition: cscore_oo.h:64
std::string GetString() const
Definition: cscore_oo.inc:52
int GetMax() const
Definition: cscore_oo.inc:37
A sink for video that accepts a sequence of frames.
Definition: cscore_oo.h:712
void SetSource(VideoSource source)
Configure which source should provide frames to this sink.
Definition: cscore_oo.inc:511
Kind
Definition: cscore_oo.h:717
@ kCv
Definition: cscore_oo.h:720
@ kUnknown
Definition: cscore_oo.h:718
@ kMjpeg
Definition: cscore_oo.h:719
VideoProperty GetProperty(std::string_view name)
Get a property of the sink.
Definition: cscore_oo.inc:506
friend void swap(VideoSink &first, VideoSink &second) noexcept
Definition: cscore_oo.h:844
std::string GetDescription() const
Get the sink description.
Definition: cscore_oo.inc:501
std::vector< VideoProperty > EnumerateProperties() const
Enumerate all properties of this sink.
Kind GetKind() const
Get the kind of the sink.
Definition: cscore_oo.inc:491
VideoProperty GetSourceProperty(std::string_view name)
Get a property of the associated source.
Definition: cscore_oo.inc:526
bool SetConfigJson(std::string_view config)
Set properties from a JSON configuration string.
Definition: cscore_oo.inc:531
int GetHandle() const
Definition: cscore_oo.h:731
VideoSource GetSource() const
Get the connected source.
Definition: cscore_oo.inc:520
CS_Status m_status
Definition: cscore_oo.h:853
VideoSink() noexcept=default
std::string GetConfigJson() const
Get a JSON configuration string.
Definition: cscore_oo.inc:541
bool operator==(const VideoSink &other) const
Definition: cscore_oo.h:733
CS_Sink m_handle
Definition: cscore_oo.h:854
VideoSink(CS_Sink handle)
Definition: cscore_oo.h:851
static std::vector< VideoSink > EnumerateSinks()
Enumerate all existing sinks.
std::string GetName() const
Get the name of the sink.
Definition: cscore_oo.inc:496
CS_Status GetLastStatus() const
Definition: cscore_oo.h:835
wpi::json GetConfigJsonObject() const
Get a JSON configuration object.
A source for video that provides a sequence of frames.
Definition: cscore_oo.h:96
std::vector< VideoSink > EnumerateSinks()
Enumerate all sinks connected to this source.
bool SetPixelFormat(VideoMode::PixelFormat pixelFormat)
Set the pixel format.
Definition: cscore_oo.inc:165
double GetActualDataRate() const
Get the data rate (in bytes per second).
Definition: cscore_oo.inc:201
CS_Source m_handle
Definition: cscore_oo.h:352
VideoSource() noexcept=default
VideoProperty GetProperty(std::string_view name)
Get a property.
Definition: cscore_oo.inc:143
VideoMode GetVideoMode() const
Get the current video mode.
Definition: cscore_oo.inc:148
CS_Status m_status
Definition: cscore_oo.h:351
int GetHandle() const
Definition: cscore_oo.h:137
friend void swap(VideoSource &first, VideoSource &second) noexcept
Definition: cscore_oo.h:342
VideoSource(CS_Source handle)
Definition: cscore_oo.h:349
std::vector< VideoProperty > EnumerateProperties() const
Enumerate all properties of this source.
bool IsConnected() const
Is the source currently connected to whatever is providing the images?
Definition: cscore_oo.inc:133
std::string GetDescription() const
Get the source description.
Definition: cscore_oo.inc:116
wpi::json GetConfigJsonObject() const
Get a JSON configuration object.
bool IsEnabled() const
Gets source enable status.
Definition: cscore_oo.inc:138
ConnectionStrategy
Connection strategy.
Definition: cscore_oo.h:109
@ kConnectionKeepOpen
Try to keep the connection open regardless of whether any sinks are connected.
Definition: cscore_oo.h:120
@ kConnectionAutoManage
Automatically connect or disconnect based on whether any sinks are connected to this source.
Definition: cscore_oo.h:114
@ kConnectionForceClose
Never open the connection.
Definition: cscore_oo.h:126
std::vector< VideoMode > EnumerateVideoModes() const
Enumerate all known video modes for this source.
Definition: cscore_oo.inc:207
uint64_t GetLastFrameTime() const
Get the last time a frame was captured.
Definition: cscore_oo.inc:121
double GetActualFPS() const
Get the actual FPS.
Definition: cscore_oo.inc:195
bool operator==(const VideoSource &other) const
Definition: cscore_oo.h:139
Kind
Definition: cscore_oo.h:101
@ kCv
Definition: cscore_oo.h:105
@ kHttp
Definition: cscore_oo.h:104
@ kUnknown
Definition: cscore_oo.h:102
@ kUsb
Definition: cscore_oo.h:103
bool SetConfigJson(std::string_view config)
Set video mode and properties from a JSON configuration string.
Definition: cscore_oo.inc:180
bool SetFPS(int fps)
Set the frames per second (FPS).
Definition: cscore_oo.inc:175
static std::vector< VideoSource > EnumerateSources()
Enumerate all existing sources.
void SetConnectionStrategy(ConnectionStrategy strategy)
Sets the connection strategy.
Definition: cscore_oo.inc:126
CS_Status GetLastStatus() const
Definition: cscore_oo.h:326
Kind GetKind() const
Get the kind of the source.
Definition: cscore_oo.inc:106
std::string GetConfigJson() const
Get a JSON configuration string.
Definition: cscore_oo.inc:190
bool SetResolution(int width, int height)
Set the resolution.
Definition: cscore_oo.inc:170
bool SetVideoMode(const VideoMode &mode)
Set the video mode.
Definition: cscore_oo.inc:153
std::string GetName() const
Get the name of the source.
Definition: cscore_oo.inc:111
a class to store JSON values
Definition: json.h:2655
basic_string_view< char > string_view
Definition: core.h:520
@ CS_CONNECTION_AUTO_MANAGE
Automatically connect or disconnect based on whether any sinks are connected to this source.
Definition: cscore_c.h:193
@ CS_CONNECTION_KEEP_OPEN
Try to keep the connection open regardless of whether any sinks are connected.
Definition: cscore_c.h:199
@ CS_CONNECTION_FORCE_CLOSE
Never open the connection.
Definition: cscore_c.h:205
@ CS_HTTP_MJPGSTREAMER
Definition: cscore_c.h:138
@ CS_HTTP_CSCORE
Definition: cscore_c.h:139
@ CS_HTTP_UNKNOWN
Definition: cscore_c.h:137
@ CS_HTTP_AXIS
Definition: cscore_c.h:140
@ CS_PROP_ENUM
Definition: cscore_c.h:119
@ CS_PROP_NONE
Definition: cscore_c.h:115
@ CS_PROP_INTEGER
Definition: cscore_c.h:117
@ CS_PROP_BOOLEAN
Definition: cscore_c.h:116
@ CS_PROP_STRING
Definition: cscore_c.h:118
@ CS_SINK_MJPEG
Definition: cscore_c.h:148
@ CS_SINK_CV
Definition: cscore_c.h:149
@ CS_SINK_UNKNOWN
Definition: cscore_c.h:147
@ CS_SOURCE_USB
Definition: cscore_c.h:127
@ CS_SOURCE_HTTP
Definition: cscore_c.h:128
@ CS_SOURCE_UNKNOWN
Definition: cscore_c.h:126
@ CS_SOURCE_CV
Definition: cscore_c.h:129
CS_Handle CS_Source
Definition: cscore_c.h:51
int CS_Status
Definition: cscore_c.h:44
CS_Handle CS_Property
Definition: cscore_c.h:47
CS_Handle CS_Sink
Definition: cscore_c.h:50
CS_Handle CS_Listener
Definition: cscore_c.h:48
EIGEN_CONSTEXPR Index first(const T &x) EIGEN_NOEXCEPT
Definition: IndexedViewHelper.h:81
::uint64_t uint64_t
Definition: Meta.h:58
CameraServer (cscore) namespace.
Definition: cscore_oo.inc:15
void swap(wpi::SmallPtrSet< T, N > &LHS, wpi::SmallPtrSet< T, N > &RHS)
Implement std::swap in terms of SmallPtrSet swap.
Definition: SmallPtrSet.h:512
fps
Definition: velocity.h:46
Listener event.
Definition: cscore_cpp.h:103
USB camera information.
Definition: cscore_cpp.h:46
Video mode.
Definition: cscore_cpp.h:64
PixelFormat
Definition: cscore_cpp.h:65