Skip to content
Snippets Groups Projects
Commit 578d9e38 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Add stereo pose channel

parent 3a6318ef
No related branches found
No related tags found
No related merge requests found
......@@ -70,6 +70,7 @@ enum struct Channel : int {
kTags = 79, /// Array of string tag names
KDescription = 80,
kSelectPoint = 81, /// A selected X,Y screen point
kStereoPose = 82, /// A pair of poses for stereo rendering
kAccelerometer = 90, /// Eigen::Vector3f
kGyroscope = 91, /// Eigen::Vector3f
......
......@@ -128,6 +128,10 @@ static const std::unordered_map<Channel,ChannelInfo> info = {
{Channel::kTags, {"Tags", -1}},
{Channel::KDescription, {"Decription", -1}},
{Channel::kSelectPoint, {"SelectPoint", -1}},
{Channel::kStereoPose, {"StereoPose", -1}},
{Channel::kAccelerometer, {"Accelerometer", -1}},
{Channel::kGyroscope, {"Gyroscope", -1}},
{Channel::kBrightness, {"Brightness", -1}},
{Channel::kContrast, {"Contrast", -1}},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment