This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public Mat readFrame() { | |
VuforiaLocalizer.CloseableFrame frame; | |
Image rgb = null; | |
try { | |
// grab the last frame pushed onto the queue | |
frame = vuforia.getFrameQueue().take(); | |
} catch (InterruptedException e) { | |
Log.d(LOG_TAG, "Problem taking frame off Vuforia queue"); | |
e.printStackTrace(); |