WebCFace 2.5.2
Web-based Communication Framework & Dashboard-like UI
|
(ver1.3から追加) 画像の送受信データを表すクラス More...
#include <webcface/image.h>
Public Member Functions | |
Image ()=default | |
Image (const Field &base) | |
Image (const Field &base, const SharedString &field) | |
Image | child (std::string_view field) const |
「(thisの名前).(追加の名前)」を新しい名前とするField | |
Image | child (std::wstring_view field) const |
「(thisの名前).(追加の名前)」を新しい名前とするField (wstring) | |
Image | child (int index) const |
Image | operator[] (std::string_view field) const |
Image | operator[] (std::wstring_view field) const |
Image | operator[] (const char *field) const |
Image | operator[] (const wchar_t *field) const |
Image | operator[] (int index) const |
Image | parent () const |
nameの最後のピリオドの前までを新しい名前とするField | |
const Image & | onChange (std::function< void(Image)> callback) const |
値が変化したときに呼び出されるコールバックを設定 | |
template<typename F , typename std::enable_if_t< std::is_invocable_v< F >, std::nullptr_t > = nullptr> | |
const Image & | onChange (F callback) const |
値が変化したときに呼び出されるコールバックを設定 | |
template<typename T > | |
void | appendListener (T &&callback) const |
const Image & | set (const ImageFrame &img) const |
画像をセットする | |
const Image & | operator= (const ImageFrame &img) const |
画像をセットする | |
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 |
画像を生画像のフォーマットでリクエストする | |
const Image & | request (std::optional< SizeOption > size=std::nullopt, std::optional< ImageColorMode > color_mode=std::nullopt, std::optional< double > frame_rate=std::nullopt) const |
画像を生画像のフォーマットでリクエストする | |
const Image & | request (std::optional< int > rows, std::optional< int > cols, ImageCompressMode cmp_mode, int quality, std::optional< double > frame_rate=std::nullopt) const |
画像を圧縮されたフォーマットでリクエストする | |
const Image & | request (std::optional< SizeOption > size, ImageCompressMode cmp_mode, int quality, std::optional< double > frame_rate=std::nullopt) const |
画像を圧縮されたフォーマットでリクエストする | |
std::optional< ImageFrame > | tryGet () const |
画像を返す | |
ImageFrame | get () const |
画像を返す (データがない場合0x0の画像が返る) | |
bool | exists () const |
このフィールドにデータが存在すればtrue | |
std::chrono::system_clock::time_point | time () const |
syncの時刻を返す | |
const Image & | free () const |
値やリクエスト状態をクリア | |
const Image & | clear () const |
画像をクリア (リクエスト状態は解除しない) | |
template<typename T , typename std::enable_if_t< std::is_same_v< T, Image >, std::nullptr_t > = nullptr> | |
bool | operator== (const T &other) const |
Imageの参照先を比較 | |
template<typename T , typename std::enable_if_t< std::is_same_v< T, Image >, std::nullptr_t > = nullptr> | |
bool | operator!= (const T &other) const |
std::string | lastName () const |
nameのうちピリオドで区切られた最後の部分を取り出す | |
Member | member () const |
Memberを返す | |
const std::string & | name () const |
field名を返す | |
const std::wstring & | nameW () const |
field名を返す (wstring) | |
Protected Member Functions | |
const Image & | tryRequest () const |
std::shared_ptr< internal::ClientData > | dataLock () const |
data_wをlockし、失敗したらruntime_errorを投げる | |
std::shared_ptr< internal::ClientData > | setCheck () const |
data_wをlockし、memberがselfではなければinvalid_argumentを投げる | |
bool | expired () const |
SharedString | lastName8 () const |
Field | child (const SharedString &field) const |
std::wstring | lastNameW () const |
nameのうちピリオドで区切られた最後の部分を取り出す (wstring) | |
Value | value (std::string_view field="") const |
Value | value (std::wstring_view field) const |
Text | text (std::string_view field="") const |
Text | text (std::wstring_view field) const |
RobotModel | robotModel (std::string_view field="") const |
RobotModel | robotModel (std::wstring_view field) const |
Image | image (std::string_view field="") const |
Image | image (std::wstring_view field) const |
Func | func (std::string_view field="") const |
Func | func (std::wstring_view field) const |
FuncListener | funcListener (std::string_view field) const |
FuncListener | funcListener (std::wstring_view field) const |
View | view (std::string_view field="") const |
View | view (std::wstring_view field) const |
Canvas3D | canvas3D (std::string_view field="") const |
Canvas3D | canvas3D (std::wstring_view field) const |
Canvas2D | canvas2D (std::string_view field="") const |
Canvas2D | canvas2D (std::wstring_view field) const |
Log | log (std::string_view field="") const |
Log | log (std::wstring_view field) const |
std::vector< Value > | valueEntries () const |
std::vector< Text > | textEntries () const |
std::vector< RobotModel > | robotModelEntries () const |
std::vector< Func > | funcEntries () const |
std::vector< View > | viewEntries () const |
std::vector< Canvas3D > | canvas3DEntries () const |
std::vector< Canvas2D > | canvas2DEntries () const |
std::vector< Image > | imageEntries () const |
std::vector< Log > | logEntries () const |
bool | isSelf () const |
memberがselfならtrue | |
bool | operator== (const Field &other) const |
bool | operator== (const FieldBase &rhs) const |
bool | operator!= (const Field &other) const |
bool | operator!= (const FieldBase &rhs) const |
Protected Attributes | |
std::weak_ptr< internal::ClientData > | data_w |
ClientDataの参照 | |
SharedString | member_ |
メンバー名 | |
SharedString | field_ |
フィールド名 | |
(ver1.3から追加) 画像の送受信データを表すクラス
コンストラクタではなく Member::image() を使って取得してください
|
default |
|
inline |
|
inline |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inline |
|
inline |
「(thisの名前).(追加の名前)」を新しい名前とするField
|
inline |
「(thisの名前).(追加の名前)」を新しい名前とするField (wstring)
const Image & clear | ( | ) | const |
画像をクリア (リクエスト状態は解除しない)
|
inherited |
data_wをlockし、失敗したらruntime_errorを投げる
bool exists | ( | ) | const |
|
inherited |
const Image & free | ( | ) | const |
値やリクエスト状態をクリア
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inline |
画像を返す (データがない場合0x0の画像が返る)
リクエストしていない場合すべてデフォルトで(元画像のフォーマットで)リクエストする
|
inherited |
|
inherited |
|
inherited |
|
inherited |
memberがselfならtrue
data_wがlockできなければruntime_errorを投げる
|
inline |
nameのうちピリオドで区切られた最後の部分を取り出す
|
protectedinherited |
|
inlineinherited |
nameのうちピリオドで区切られた最後の部分を取り出す (wstring)
|
inherited |
|
inherited |
|
inherited |
Member member | ( | ) | const |
Memberを返す
|
inline |
field名を返す
|
inline |
field名を返す (wstring)
|
inline |
値が変化したときに呼び出されるコールバックを設定
callback | 引数をとらない関数 |
値が変化したときに呼び出されるコールバックを設定
callback | Image型の引数(thisが渡される)を1つ取る関数 |
|
inlineinherited |
|
inlineinherited |
|
inline |
|
inline |
画像をセットする
|
inherited |
|
inlineinherited |
|
inline |
Imageの参照先を比較
|
inline |
operator[](long, const char *)と解釈されるのを防ぐための定義
|
inline |
|
inline |
nameの最後のピリオドの前までを新しい名前とするField
|
inline |
画像を圧縮されたフォーマットでリクエストする
rows | 画像の高さ |
cols | 画像の幅 rows,colsのどちらかのみがnulloptの場合縦横比を保ってリサイズ |
cmp_mode | 圧縮モード |
quality | 圧縮のパラメータ
|
frame_rate | 画像を受信する頻度 (指定しない場合元画像が更新されるたびに受信する) |
|
inline |
画像を生画像のフォーマットでリクエストする
rows | 画像の高さ |
cols | 画像の幅 rows,colsのどちらかのみがnulloptの場合縦横比を保ってリサイズ |
color_mode | 画像の色フォーマット (nulloptの場合元画像のフォーマット) |
frame_rate | 画像を受信する頻度 (指定しない場合元画像が更新されるたびに受信する) |
|
inline |
|
inline |
|
inherited |
|
inherited |
|
inherited |
const Image & set | ( | const ImageFrame & | img | ) | const |
画像をセットする
|
inherited |
data_wをlockし、memberがselfではなければinvalid_argumentを投げる
|
inherited |
|
inherited |
|
inherited |
std::chrono::system_clock::time_point time | ( | ) | const |
syncの時刻を返す
std::optional< ImageFrame > tryGet | ( | ) | const |
画像を返す
リクエストしていない場合すべてデフォルトで(元画像のフォーマットで)リクエストする
|
protected |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
|
inherited |
ClientDataの参照
ClientData内に保持するクラスもあるので循環参照を避けるためweak_ptr
|
inherited |
フィールド名
Memberなどフィールド名が不要なクラスでは使用しない
|
inherited |
メンバー名