Hello how can i capture camera frame without the augmention ?
i have tried : https://library.vuforia.com/articles/Solution/Working-with-the-Camera#How-To-Access-the-Camera-Image-in-Unity
but didn't work
Hello how can i capture camera frame without the augmention ?
i have tried : https://library.vuforia.com/articles/Solution/Working-with-the-Camera#How-To-Access-the-Camera-Image-in-Unity
but didn't work
Just in case that was your error, here is how I fixed it:
In one version of the Vuforia example code, they create a pixel format variable using the following:
private Image.PIXEL_FORMAT mPixelFormat = Image.PIXEL_FORMAT.GRAYSCALE
The above no longer worked in my code; instead I just used PIXEL_FORMAT directly after importing Vuforia.Image:
private PIXEL_FORMAT mPixelFormat = PIXEL_FORMAT.GRAYSCALE;