Hello,
I'm working on the VideoPlayback sample code and I'm noticing that the association between targets and video files is hardcoded. I'm thinking to make the thing a bit more dynamical.The ideal solution would be to associate easily each target to a specific video filename and option (fullscreen, autoplay etc.). Ideally this should be defined in the database .xml but it looks like nothing like that can be generated with the Target Manager.
is there any way to programmatically retrieve the list of target images in the local Target Database?
thanks
Well, QCARControl.h (which is not part of the library) is included in EAGLView, and this contains thet dataset:
@interface QCARControl : NSObject {
@private
// The current QCAR image tracker data set
QCAR::DataSet* dataSet;
}
So, it should be easily accessible.
You could either make it public, or you could write an additional method on QCARControl.
N