I'm looking for a solution to adjust the Aperture to a different value when triggering the PMCA-DEMO Camera App. In detail I'd like to build something like a exposure-bracketing up to 9 Images and each should get -/+ 2 EV Aperture adjusted:
CameraEx.j Aperture Setting:
.method public adjustAperture(I)V
Line 106 - https://github.com/ma1co/OpenMemories-Framework/blob/f8df3504d8684433a331ee869e64f67cc8be9730/stubs/src/main/jasmin/com/sony/scalar/hardware/CameraEx.j
PMCA-DEMO APP
protected boolean onShutterKeyDown() {
camera.getNormalCamera().takePicture(null, null, null);
return true;
}
Line 67 https://github.com/ma1co/PMCADemo/blob/12f34e49d48a1d9496ea3c2792911867ea4c985b/app/src/main/java/com/github/ma1co/pmcademo/app/CameraActivity.java
Is it somehow possible to set a value for the Aperture? Does anyone know how?
Thanks.
I'm looking for a solution to adjust the Aperture to a different value when triggering the PMCA-DEMO Camera App. In detail I'd like to build something like a exposure-bracketing up to 9 Images and each should get -/+ 2 EV Aperture adjusted:
CameraEx.j Aperture Setting:
.method public adjustAperture(I)V
Line 106 - https://github.com/ma1co/OpenMemories-Framework/blob/f8df3504d8684433a331ee869e64f67cc8be9730/stubs/src/main/jasmin/com/sony/scalar/hardware/CameraEx.j
PMCA-DEMO APP
protected boolean onShutterKeyDown() {
camera.getNormalCamera().takePicture(null, null, null);
return true;
}
Line 67 https://github.com/ma1co/PMCADemo/blob/12f34e49d48a1d9496ea3c2792911867ea4c985b/app/src/main/java/com/github/ma1co/pmcademo/app/CameraActivity.java
Is it somehow possible to set a value for the Aperture? Does anyone know how?
Thanks.