"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

Video preview in 60 FPS problem

Device: Iphone 6s

Problem: Can't set camera preview to render at 60 fps.

Vuforia sample app offers camera preview at 60FPS. It gives it good continuous feeling. I can't make it so my app does reach those FPS.

Native iOS camera app allows you to see this when recording "slow-motion" video.

How can you make it so preview displays at higher frames?

[quote]int recommendedFps = Vuforia::Renderer::getInstance().getRecommendedFps();[/quote]

Managed to change "FPSHINT_FLAGS" so it returns 60FPS, but setting it through [quote]Vuforia::Renderer::getInstance().setTargetFps(recommendedFps);[/quote] does not work. 

Changing setTargetFps() manually with int variable does seem to work only when 1<int<30. After 30 it does not change anything.

Thanks for help in advance!

Hello,

60 FPS camera was enabled on the iPhone 6S (iPhone8,1) for Vuforia 6.0 and later. Please note that you must set the video mode to "MODE_DEFAULT" or "MODE_OPTIMIZE_QUALITY" to enable 60 FPS camera mode, so if it is not set to one of those you will not see the benefit.

@medabit

Thank you very much!

Changing video mode to "MODE_OPTIMIZE_QUALITY" resolved the problem!