Is there a way to convert a vector to a pointer to a pointer (ptr-to-ptr).
Background: I have an arbitrary length set of data stored in a vector. But I have a library of algorithms that accept ptr-to-ptr (for image array access). I need to get the data from my vector to a ptr-to-ptr. How is that possible?