Hello!
So from my camera driver I receive the pointer to the block of memory where the frame is currently saved. Lets asume this is `uint8_t *frame_data`.
Now I want to create a `ImagePtr` in ROS but **I don't want any memory copies** whatsoever! How can I create the `ImagePtr` that can point to my `frame_data`? Is there a way?
Thanks!
↧