I get camera frames, do some processing using OpenCV, and generate several Bitmap images. I want to pass them to another activity. Now, these images are not very small. In fact, if I try to pass all of them using intent.putExtra
as parcelable
s, I get
TransactionTooLargeException
In case you ask, these images are not resources. They are purely generated images and are in memory. So there is no URI to find them.
What is the best way to solve this problem?