I would like to be able to do a real time analysis of the image taken by the camera.
I’ve seen that we are now allowed to use the undocumented UIGetScreenImage function.
However, I do not succeed to use it, I have the following warning:
implicit declaration of function ‘UIGetScreenImage’
any idea to solve this?
Thanks in advance!
regards,
You need to put a prototype
in your source code (or some common headers).
Note that you need to
CGImageReleasethe result ofUIGetScreenImageeven it is a “Get” function.