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://kr.mathworks.com/matlabcentral/fileexchange/60689-sharedtransform), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2014b
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Applications에 대해 자세히 알아보기
도움

도움 준 파일: SharedData

버전 게시됨 릴리스 정보
1.0.0.0

added help note