Get camera image without displaying dialog
-
Is it possible, maybe using
objc_util
, to get what the camera sees as a PIL image without displaying the dialog? I want to have an AR-type deal where I modify the camera's view before displaying it in real time. I need it to go to a PIL image.
-
last edited by
-
Thanks, I'll take a look. Guess I didn't search for the right thing.
-
Is the fastest way to get a PIL image to call
ui.take_snapshot
, store inBytesIO
, and open that with PIL? Or is there a more direct way.