I have to write a buffer to store some video sequences. The way I know now is to create
a vector such as vector<imagetype*> buffer.
when I push_back the images into the vector.
How can I operate on the images in the buffer?
for example do some addition or substraction
with the images within the buffer?
Thanks if anyone can help me out!