I’d like to perform a 12 megapixel still image capture but I’m not sure if it’s possible with kcamera?
Here’s what I tried:
from kritter.kcamera import Camera;
cam = Camera()
cam.getmodes().keys()
yielding a number of modes, with highest resolution around 3 megapixels:
dict_keys(['320x240x10bpp (cropped)', '640x480x10bpp (cropped)', '768x432x10bpp', '1280x720x10bpp', '1280x960x10bpp (cropped)', '1920x1080x10bpp', '2016x1520x10bpp'])
If possible with kcamera, I’d love to learn how. If not, any recommendations for alternate approach?
Thanks!