Skip to content Skip to sidebar Skip to footer

How To Measure The Iso (sensor Sensitivity) From Cameracharacteristics

How to measure the CameraDevice ISO value, I mean I need something like: cameraCharacteristics.get(SENSOR_SENSITIVITY) In this case this function will return the value of the sens

Solution 1:

Using

val range: Range<Int> = cameraManager.getCameraCharacteristics(cameraId)
        .get(CameraCharacteristics.SENSOR_INFO_SENSITIVITY_RANGE)!!
    val max1: Int = range.upper 
    val min1: Int = range.lower 

you can get min and max ISO range of your camera.

Post a Comment for "How To Measure The Iso (sensor Sensitivity) From Cameracharacteristics"