Reading the sequence number from a transform
Hi folks!
I'd like to be able to use the sequence number from a transform that I am getting from a motion capture vrpn. I use this piece of code to read the transform:
tf_listener.lookupTransform("/optitrak", "/quad", ros::Time(0), quad);
and am attempting to read the sequence via:
seq= quad.header.seq;
But, naturally, the transform does not include that header. How can I read get both the transform and it's associated sequence number?
Thanks, Parker