Vuforia
The Vuforia Library
Instantiating Vuforia
String VUFORIA_KEY = "Vuforia Key Goes Here"
VuforiaLocalizer vuforia;Parameters
int cameraMonitorViewId = hardwareMap.appContext.getResources().getIdentifier("cameraMonitorViewId", "id", hardwareMap.appContext.getPackageName());
VuforiaLocalizer.Parameters parameters = new VuforiaLocalizer.Parameters(cameraMonitorViewId);parameters.vuforiaLicenseKey = VUFORIA_KEY;
parameters.cameraDirection = BACK; //Making sure to use the right cameravuforia = ClassFactory.getInstance().createVuforia(parameters);
vuforia.setFrameQueueCapacity(1);
vuforia.enableConvertFrameToBitmap();
Last updated