10#include "webcface/common/webcface-config.h"
21 const Image &request(std::optional<int> rows, std::optional<int> cols,
23 std::optional<ImageColorMode> color_mode,
24 std::optional<double> frame_rate)
const;
32 using Field::lastName;
98 template <
typename F,
typename std::enable_if_t<std::is_invocable_v<F>,
99 std::
nullptr_t> =
nullptr>
102 [callback = std::move(callback)](
const auto &) { callback(); });
111 template <
typename T>
113 onChange(std::forward<T>(callback));
131 const Image &tryRequest()
const;
147 [[deprecated(
"Ambiguous image size")]]
149 request(std::optional<int> rows, std::optional<int> cols = std::nullopt,
150 std::optional<ImageColorMode> color_mode = std::nullopt,
151 std::optional<double> frame_rate = std::nullopt)
const {
152 return request(rows, cols, ImageCompressMode::raw, 0, color_mode,
167 request(std::optional<SizeOption> size = std::nullopt,
168 std::optional<ImageColorMode> color_mode = std::nullopt,
169 std::optional<double> frame_rate = std::nullopt)
const {
170 return request(size.value_or(
SizeOption{}).rows(),
172 ImageCompressMode::raw, 0, color_mode, frame_rate);
190 [[deprecated(
"Ambiguous image size")]]
192 request(std::optional<int> rows, std::optional<int> cols,
194 std::optional<double> frame_rate = std::nullopt)
const {
195 return request(rows, cols, cmp_mode, quality, std::nullopt, frame_rate);
214 std::optional<double> frame_rate = std::nullopt)
const {
215 return request(size.value_or(
SizeOption{}).rows(),
216 size.value_or(
SizeOption{}).cols(), cmp_mode, quality,
217 std::nullopt, frame_rate);
225 std::optional<ImageFrame> tryGet()
const;
251 [[deprecated]] std::chrono::system_clock::time_point time()
const;
254 const Image &free()
const;
257 const Image &clear()
const;
263 template <
typename T,
typename std::enable_if_t<std::is_same_v<T, Image>,
264 std::
nullptr_t> =
nullptr>
266 return static_cast<Field>(*this) ==
static_cast<Field>(other);
268 template <
typename T,
typename std::enable_if_t<std::is_same_v<T, Image>,
269 std::
nullptr_t> =
nullptr>
271 return static_cast<Field>(*this) !=
static_cast<Field>(other);
(ver1.3から追加) 画像データ
Definition image_frame.h:101
(ver1.3から追加) 画像の送受信データを表すクラス
Definition image.h:20
Image operator[](int index) const
Definition image.h:77
const Image & operator=(const ImageFrame &img) const
画像をセットする
Definition image.h:125
bool operator==(const T &other) const
Imageの参照先を比較
Definition image.h:265
Image child(int index) const
Definition image.h:53
Image operator[](const wchar_t *field) const
Definition image.h:72
Image child(std::wstring_view field) const
「(thisの名前).(追加の名前)」を新しい名前とするField (wstring)
Definition image.h:47
const Image & request(std::optional< SizeOption > size, ImageCompressMode cmp_mode, int quality, std::optional< double > frame_rate=std::nullopt) const
画像を圧縮されたフォーマットでリクエストする
Definition image.h:212
const Image & onChange(F callback) const
値が変化したときに呼び出されるコールバックを設定
Definition image.h:100
const Image & request(std::optional< int > rows, std::optional< int > cols=std::nullopt, std::optional< ImageColorMode > color_mode=std::nullopt, std::optional< double > frame_rate=std::nullopt) const
画像を生画像のフォーマットでリクエストする
Definition image.h:149
Image operator[](const char *field) const
Definition image.h:68
Image operator[](std::string_view field) const
Definition image.h:58
bool operator!=(const T &other) const
Definition image.h:270
ImageFrame get() const
画像を返す (データがない場合0x0の画像が返る)
Definition image.h:232
void appendListener(T &&callback) const
Definition image.h:112
Image operator[](std::wstring_view field) const
Definition image.h:63
const Image & request(std::optional< int > rows, std::optional< int > cols, ImageCompressMode cmp_mode, int quality, std::optional< double > frame_rate=std::nullopt) const
画像を圧縮されたフォーマットでリクエストする
Definition image.h:192
Image child(std::string_view field) const
「(thisの名前).(追加の名前)」を新しい名前とするField
Definition image.h:40
const Image & request(std::optional< SizeOption > size=std::nullopt, std::optional< ImageColorMode > color_mode=std::nullopt, std::optional< double > frame_rate=std::nullopt) const
画像を生画像のフォーマットでリクエストする
Definition image.h:167
Image parent() const
nameの最後のピリオドの前までを新しい名前とするField
Definition image.h:82
Image(const Field &base, const SharedString &field)
Definition image.h:29
u8stringとstringとwstringをshared_ptrで持ち共有する
Definition encoding.h:69
Definition image_frame.h:59
ImageCompressMode
Definition image_frame.h:23
ClientDataの参照とメンバ名とデータ名を持つクラス
Definition field.h:70
Field parent() const
nameの最後のピリオドの前までを新しい名前とするField
Definition field.cc:33
Field child(const SharedString &field) const
Definition field.cc:42
#define WEBCFACE_DLL
Definition webcface-config.h:60
#define WEBCFACE_NS_END
Definition webcface-config.h:104
#define WEBCFACE_NS_BEGIN
Definition webcface-config.h:103
#define WEBCFACE_CALL_FP
Definition webcface-config.h:98