I am able to get a couple of frames from my video feed using GPUImage.
One of the frames has a bright flash in it, the other does not.
I would like to now detect whether a) there is a flash (change in luminance), and b) where it is located.
I was told the following but having a hard time implementing it
"you can compare two frames easily by using a GPUImageBuffer and then applying an appropriate blend to subtract one image from the next. Using a luminance extraction operation, you can get the average luminance of this difference and use that to determine the luminance change from one frame to the next."