Alternating part models
First option
The model_quantity parameter is used to ask EYE+ XTD to look for one or several
parts of a specific model, either 1
or 2
. This means that every time EYE+ XTD takes a picture, it will look for at
least <n> parts of the specific model(s) on the image. If it does not find those parts, no coordinates will be sent and
an error will be returned.
This parameter influences the operation of the command get_part and prepare_part.
The following scenario describes how to get a part of model 1
, then a part of model 2
and so on, always in an
alternating way.

Fig. 201 Production scenario for alternating part models
[set_parameter model_quantity 1 1]: Set the parameter model_quantity for
1
to 1.[set_parameter model_quantity 2 0]: Set the parameter model_quantity for
2
to 0.[get_part]: Call the command get_part. If there is already one part of model
1
available in the list of good candidates, the system will directly return the coordinates of that part. Since model_quantity for2
is set to 0, no part2
will ever be returned here.[Pick & place part 1]: Pick and place the part of model
1
.[set_parameter model_quantity 1 0]: Set the parameter model_quantity for
1
to 0.[set_parameter model_quantity 2 1]: Set the parameter model_quantity for
2
to 1.[get_part]: Call the command get_part. If there is already one part of model
2
available in the list of good candidates, the system will directly return the coordinates of that part. Since model_quantity for1
is now set to 0, no part1
will be ever returned here.[Pick & place part 2]: Pick and place the part of model
2
.Start again from step 1. The cycle stops when EYE+ XTD receives the command stop production.
Second option
The following scenario is not strictly speaking equivalent to the first option described above but it could be used to
achieve a similar result. Instead of requesting alternatingly a part of model 1
and a part of model 2
, we ask
now for both 1
and 2
at the same time. Here, the system will ensure that get_part returns both parts in the
same response. This means that at least one part of each model must be pickable at the same time.
This can be useful if the robot has for example two grippers and must pick both 1
and 2
in order to continue its
operation.
Requiring both 1
and 2
to be pickable at the same time reduces the probability that get_part can be fulfilled
and can therefore increase the cycle time of the application.

Fig. 202 Production scenario to always get one part of model 1
and one part of model 2
[set_parameter model_quantity 1 1]: Set the parameter model_quantity for
1
to 1.[set_parameter model_quantity 2 1]: Set the parameter model_quantity for
2
to 1.[get_part]: Call the command get_part. If there is already one part of model
1
and one part of model2
available in the list of good candidates, the system will directly return the coordinates of these two parts.[Pick & place part 1 & 2]: Pick and place the part of model
1
and the part of model2
.Repeat from step 1. The cycle stops when EYE+ XTD receives the command stop production.