Maybe someone can help me. I need a Color32[] Array by calling GetPixels32(). Here is a good solution for an QR-Code Reader with webcam. How to decode QR code using Unity3D
Vuforia can unfortunately only give a byte array with...
Image.PIXEL_FORMAT mPixelFormat = Image.PIXEL_FORMAT.RGB565;
Image cameraImage = CameraDevice.Instance.GetCameraImage(mPixelFormat);
byte[] pixels = cameraImage.Pixels;
Does anyone have any idea how I can make a Pixel byte array to an Color32 array? Here is my question in the Vuforia Forum.
Maybe anyone have any other solutions for QR-Code decoding in Unity for Android and iOS. I would be very grateful for your help.
Edit: Here is the same Question in unityAnswers.