SharedTransform

版本 1.0.0.0 (4.6 KB) 作者: Florian Enner
Shares a 4x4 homogeneous transform among MATLAB instances
227.0 次下载
更新时间 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 (2024). SharedTransform (https://www.mathworks.com/matlabcentral/fileexchange/60689-sharedtransform), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2014b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Applications 的更多信息
致谢

启发作品: SharedData

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
版本 已发布 发行说明
1.0.0.0

added help note