SharedTransform

Shares a 4x4 homogeneous transform among MATLAB instances
252 Downloads
Aktualisiert 12. Dez 2016

Lizenz anzeigen

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.

Zitieren als

Florian Enner (2025). SharedTransform (https://de.mathworks.com/matlabcentral/fileexchange/60689-sharedtransform), MATLAB Central File Exchange. Abgerufen.

Kompatibilität der MATLAB-Version
Erstellt mit R2014b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Applications finden Sie in Help Center und MATLAB Answers
Quellenangaben

Inspiriert: SharedData

Community Treasure Hunt

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

Start Hunting!
Version Veröffentlicht Versionshinweise
1.0.0.0

added help note