0

I'm using Vuforia SDK for AR. I need to get the luminance from the device camera. I searched on Vuforia forum but couldn't find anything there. How can I get the camera light intensity from Vuforia SDK?

halfer
  • 19,824
  • 17
  • 99
  • 186
Nuibb
  • 1,800
  • 2
  • 22
  • 36

1 Answers1

1

Vuforia supplies the Advanced Camera API for getting camera properties, but it is only supported in Android.

As far as I know, in iOS you do not need it and you can do it directly using the iOS APIs - as you can see in this post

yakobom
  • 2,681
  • 1
  • 25
  • 33
  • Thanks for your help. I've solved my issue. Vuforia 7 has introduced Illuminating class that has a method to get light intensity. – Nuibb Mar 28 '18 at 03:36