-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create TelemetryPacket object #180
Comments
Looks like there is an |
Still not sure if we are returning the depth map or if it will be created by the Particle Filter module. See #187. |
You will use the Depth Map. But the live implementation will be created by the SLAM team. You need only to define the interface and create a dummy or stub to implement that interface. |
Implemented as a |
Summary
The
TelemetryPacket
object will contain all the information generated by the SLAM module. It will contain the camera frame, depth map, pose, and time stamp.Acceptance Criteria
TelemetryPacket
GetCameraFrame()
is called an OpenCV image object is returned.GetDepthMap()
is called aDepthMap
object is returned.GetPose()
is called aPose
object is returned.GetTimeStamp()
is called a Chrono object is returned.The text was updated successfully, but these errors were encountered: