SharedTransform

バージョン 1.0.0.0 (4.56 KB) 作成者: Florian Enner
Shares a 4x4 homogeneous transform among MATLAB instances
ダウンロード: 258
更新 2016/12/12

ライセンスの表示

SharedTransform provides a low overhead way to share a 4x4 transform between MATLAB instances using memory mapped files. The original use case was a need for asynchronously updating the target pose of a robot that is controlled at >100 Hz with input data from a computer vision algorithm running at 30 Hz. Memory mapped files provide a simpler way to share data than using sockets or e.g. ROS messages using the robotics toolbox.

% MATLAB instance (writer)
blob = SharedTransform('blob');
blob.setTransform(eye(4));

% MATLAB instance (reader)
blob = SharedTransform('blob');
T = blob.getTransform();

Please consult the help documentation for more info.

引用

Florian Enner (2026). SharedTransform (https://jp.mathworks.com/matlabcentral/fileexchange/60689-sharedtransform), MATLAB Central File Exchange. 取得日: .

MATLAB リリースの互換性
作成: R2014b
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersApplications についてさらに検索
謝辞

ヒントを与えたファイル: SharedData

バージョン 公開済み リリース ノート
1.0.0.0

added help note