示例#1
0
 /// <summary>
 /// Adds a single trackable to the tracker from image data, names it with the given string, and applies any settings. This method uses the default values for whether this trackable should use extended tracking or auto-cropping.
 /// </summary>
 /// <returns><c>true</c>, if trackable was successfully added to the tracker, <c>false</c> otherwise.</returns>
 /// <param name="data">The array of image data.</param>
 /// <param name="id">A name applied to the trackable to identify it in the tracker while the app is running.</param>
 public void AddTrackable(byte[] data, string id)
 {
     _trackerPlugin.AddTrackable(data, id, _markerExtensibility, _markerAutoCrop);
 }