etiennedub / pyk4a

Python 3 wrapper for Azure-Kinect-Sensor-SDK
MIT License
287 stars 81 forks source link

how to set the iso like whitebalance or exposure in pyk4a.py? #225

Closed visonpon closed 7 months ago

visonpon commented 7 months ago

Hi, thanks for sharing this wonderful project, I have tried to modify the code to set the iso easily like whitebalance/exposure, but it didn'r work. Hope you can give some help, thanks~

etiennedub commented 7 months ago

Hi,

It's not supported you get only get the ISO value from a capture.

Also, the ISO is set differently from the other parameters. It's not a camera setting but an image/capture setting on color image.

I cannot implemented it myself, but if you want you to add it yourself, you can add a call in PyK4ACapture that expose k4a_image_set_iso_speed.

visonpon commented 7 months ago

ok, i will try again and see if it works, thank you~