![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |
Launch files
Messages
Services
Plugins
Recent questions tagged transform_graph at Robotics Stack Exchange
![]() |
transform_graph package from transform_graph repotransform_graph |
ROS Distro
|
Package Summary
Tags | No category tags. |
Version | 0.3.0 |
License | Apache 2.0 |
Build type | CATKIN |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/jstnhuang/transform_graph.git |
VCS Type | git |
VCS Version | indigo-devel |
Last Updated | 2019-07-19 |
Dev Status | DEVELOPED |
CI status | Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Justin Huang
Authors
transform_graph
transform_graph
is a library that computes transformations betweens arbitrary frames in a graph of transformations.
See the generated documentation for details.
Basic example:
#include "transform_graph/transform_graph.h"
transform_graph::Graph graph;
graph.Add("wrist", transform_graph::RefFrame("base_link"), wrist_pose_stamped);
graph.Add("kinect", transform_graph::RefFrame("base_link"), kinect_pose_stamped);
// Find out if a point in the frame of the Kinect is near the wrist.
pcl::PointXYZ point_in_kinect = ...;
transform_graph::Position point_in_wrist;
graph.DescribePosition(point_in_kinect, transform_graph::Source("kinect"), transform_graph::Target("wrist"), &point_in_wrist);
if (point_in_wrist.vector().norm() < 0.05) {
...
}
Changelog for package transform_graph
0.3.0 (2018-01-31)
- Added methods for converting Position, Orientation, and Transform back to common types.
- Made LocalFrame implicitly convertable from strings, which makes the API cleaner.
- Updated docs.
- Contributors: Justin Huang
0.2.1 (2017-07-24)
- Changed Markdown documentation to Doxygen format.
- Contributors: Justin Huang
0.2.0 (2017-07-12)
- Added convenience method to get a Pose from a Transform.
- Added convenience method to get a quaternion from an Orientation.
- Contributors: Justin Huang
0.1.4 (2017-05-26)
- Installed internal_graph library.
- Contributors: Justin Huang
0.1.3 (2017-05-25)
- Added missing library export to CMakeLists.txt
- Contributors: Justin Huang
0.1.2 (2017-05-24)
- Fixed CMakeLists.txt for dependent projects.
- Contributors: Justin Huang
0.1.1 (2017-05-05)
- Moved mainpage.md into the doc/ folder.
- Contributors: Justin Huang
0.1.0 (2017-05-03)
The initial release of transform_graph.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
catkin | |
rosunit | |
cmake_modules | |
eigen_conversions | |
geometry_msgs | |
roscpp | |
rospy | |
tf | |
tf_conversions |
System Dependencies
Name |
---|
libpcl-all |
Dependant Packages
Name | Deps |
---|---|
rapid_pbd | |
robot_markers |