public interface

VDARImageReceiver

com.vidinoti.android.vdarsdk.VDARImageReceiver
Known Indirect Subclasses

Class Overview

Interface used by Vidinoti AR systems to receive and treat image frames

Summary

Public Methods
abstract void processNewImageFrame(VDARFrame openGLFrame, double currentTime)
When calling this method, the implemented class will use that new image frame to update its own recognition pipeline with the image content.

Public Methods

public abstract void processNewImageFrame (VDARFrame openGLFrame, double currentTime)

When calling this method, the implemented class will use that new image frame to update its own recognition pipeline with the image content.

Warning: You must not call this method within different frames concurrently!

Parameters
openGLFrame The new image frame. Note that the image should be locked since version 2.0.0b2 before passing it to this method (i.e. call image.lock() or image.trylock())
currentTime The time at which the frame was captured. (Since Version 3.0.2)