Is SetDeviceProperty functional?
I tried it with a few params, but everytime it returns false. Maybe I'm doing it wrong - there are no samples and documentation.
I'm calling it in the setup()
boolean ret_val = false; float[] val1_res = new float[1]; float[] val1 = new float[1]; val1_res[0] = 10.0; ret_val = pp.SetDeviceProperty(PXCMCapture.Device.PROPERTY_COLOR_SHARPNESS, val1_res); pp.QueryDeviceProperty(PXCMCapture.Device.PROPERTY_COLOR_SHARPNESS, val1); print("ret_val: " + ret_val + " _ val1: " + val1[0]);



