Modify the Dataset Configuration XML File

Targets in a device target database are created by uploading images to the Target Manager. After the targets are in the Target Manager database, you can manage and modify those targets outside of the Target Manager using the Dataset Configuration XML and the APIs in the SDK.

The XML file contains the database for the target images that are uploaded to the Target Manager. Once the XML files are in your workspace, you can make modifications to the XML file before packaging it with the application.

  1. Use the Target Manager to download selected targets to a device database.
    The archive that you download will contain these two files:
    • <database_name>.dat
    • <database_name>.xml
  1. You can then modify the XML configuration file to change the size and composition of the target.

These sections provide instructions on how to revise the XML configuration file for the various target types:

  1. See Schema for QCAR Dataset Configuration XML to view the entire Dataset Configuration XML schema and attribute definitions.
  2. After the XML file is modified, save the file to the appropriate directory before packaging the application.
  • Save the modified XML file in the assets directory (Android) or the media directory (iOS) to ensure that the changes are included in the APK file.

See:

How To Access and Modify Targets at Run Time

How To Modify the Size of a Target

You can modify the size of an existing image target by updating the size attribute in the ImageTarget element of the <database_name>.xml file.

Note: It is important that the aspect ratio of the actual ImageTarget is not changed. The size should always correspond to the physical size of a target in meters.

If you use the following example and if you change the width of the stones target to 10 cm, equaling 0.1 value, you must set the height to be 0.173/0.247*0.10=0.07.

Note: This action helps you avoid using the Target Manager to repeat the upload of the target and the download of the device database.

XML Example

<?xml version="1.0"?>
<QCARConfig xsi:noNamespaceSchemaLocation="qcar_config.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Tracking>
        <ImageTarget name="stones" size="0.247 0.173"/>
        <ImageTarget name="chips" size="0.247 0.173"/>
    </Tracking>
</QCARConfig>

 

How To Modify the Side Length of a Cylinder Target

You can change the side length that you'd defined for a Cylinder Target in the Target Manager by modifying the config.xml file that is included with the *.dat file of the Device Database that it belongs to within the database archive that you obtain from the Target Manager.

  1. Download a Device Database containing the Cylinder Target
  2. Unzip the database archive - this is accomplished by importing the archive for Unity projects
  3. You'll find the database's config.xml file in the folder that the archive has been unpacked to

To modify the side length of a cylinder target, update the sideLength attribute in the CylinderTarget element of the <database_name>.xml file.

Note that changing the side length results in a proportional change of the bottom and top diameters. This result is equivalent to a uniform scaling of the object in 3D space.

Example

<CylinderTarget sideLength="0.15" name="bottle"/>

How To Modify a Multi-Target Using its Config XML File

A Multi Target is made up of multiple image targets. These image targets are included in the multi-targets dataset and configured using the target's config file. You can create a multi-target without the aid of the Target Manager. However, the image targets to be assigned to the parts must have already been added to the device database through the Target Manager.

  1. To create a multi-target in the <database_name>.xml file, you must add the MultiTarget element and a Part element for each surface. For each Part element, define the following attributes:
    • Name
    • Translation
    • Rotation attributes
  2. The name of each part must be the name of an existing ImageTarget.
  3. In addition, a developer can use APIs in native to do the following:
    • Remove a part
    • Change the spatial configuration

Example

In the following sample, the six image targets are assigned by name to one of six parts, and the location of each part is defined by the translation and rotation attributes. To understand what a multi-target looks like, see the sample application for Multi-Targets.

<?xml version="1.0"?>
<QCARConfig xsi:noNamespaceSchemaLocation="qcar_config.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <Tracking>
        <ImageTarget name="FlakesBox.Front" size="0.090 0.120"/>
        <ImageTarget name="FlakesBox.Top" size="0.090 0.060"/>
        <ImageTarget name="FlakesBox.Bottom" size="0.090 0.060"/>
        <ImageTarget name="FlakesBox.Left" size="0.060 0.120"/>
        <ImageTarget name="FlakesBox.Right" size="0.060 0.120"/>
        <ImageTarget name="FlakesBox.Back" size="0.090 0.120"/>

        <MultiTarget name="FlakesBox">
            <Part name="FlakesBox.Front" translation="0 0 0.030" rotation="AD: 1 0 0 0"/>
            <Part name="FlakesBox.Back" translation="0 0 -0.030" rotation="AD: 0 1 0 180"/>
            <Part name="FlakesBox.Left" translation="-0.045 0 0" rotation="AD: 0 1 0 -90"/>
            <Part name="FlakesBox.Right" translation="0.045 0 0" rotation="AD: 0 1 0 90"/>
            <Part name="FlakesBox.Top" translation="0 0.060 0" rotation="AD: 1 0 0 -90"/>
            <Part name="FlakesBox.Bottom" translation="0 -0.060 0" rotation="AD: 1 0 0 90"/>
        </MultiTarget>
    </Tracking>
</QCARConfig>
  • The 'translation' attribute translates the origin of an image target (part) by the defined scene units along the x, y, z axis.
  • The 'rotation' attribute rotates the target around a given axis by a given angle. The 'AD' prefix stands for 'Axis - Angle Degrees'

Dataset Schema Specification

You can view the entire Dataset Configuration XML schema and attribute definitions. The schema for the Vuforia Dataset Configuration XML is defined in the following figure and table.

Common to all Listed Elements

Element(s) ImageTarget, CylinderTargetMultiTarget, Part
Attribute name
Type string
Range maxLength(size) = 64
Default Value -
Definition Unique reference to the target, button, or part.
Example Value target

Image Target Specific

Element ImageTarget
Attribute size
Type string
Range maxLength(size) = 255, furthermore 0<val(size.x,size.y)
Default Value 0 0
Definition 2D vector description of ImageTarget size in scene units.
Example Value 40.0 30.0

Cylinder Target Specific

Element CylinderTarget
Attribute sideLength
Type string
Range maxLength(size) = 255, furthermore 0<val(sideLength)
Default Value 0
Definition Numeric value of CylinderTarget side length in scene units.
Example Value 40.0

MultiTarget Specific

Element Part
Attribute translation
Type string
Range maxLength(size) = 255
Default Value 0 0 0
Definition Part origin is translated by this offset in scene units.
Example Value -100.0 0.0 50.0
Element Part
Attribute rotation
Type string
Range maxLength(size) = 255, must follow one of the formats:
AD: x y z r rotation of r degrees around [x,y,z] vector
AR: x y z r rotation of r radians aroun d [x,y,z] vector
x y z w quaternion rotation with [x,y,z,w]  
Default Value AD: 0 0 0 0
Definition Rotational offset of the ImageTarget s local coordinate system with respect to the MultiTarget s coordinate system at the origin.
Example Value AD: 0 1 0 -90

Can this page be better?
Share your feedback via our issue tracker