summaryrefslogtreecommitdiff
path: root/2005/i/robert/src/ovision/see/group.cc
diff options
context:
space:
mode:
Diffstat (limited to '2005/i/robert/src/ovision/see/group.cc')
-rw-r--r--2005/i/robert/src/ovision/see/group.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/2005/i/robert/src/ovision/see/group.cc b/2005/i/robert/src/ovision/see/group.cc
index 8bb80b6..e18379f 100644
--- a/2005/i/robert/src/ovision/see/group.cc
+++ b/2005/i/robert/src/ovision/see/group.cc
@@ -40,6 +40,7 @@ Group::addZone (const int idColor, const int xmin, const int xmax, const int ymi
else if (iter->label == "border") zone.id = border;
else if (iter->label == "base") zone.id = base;
else if (iter->label == "gap") zone.id = gap;
+ else if (iter->label == "reflectBand") zone.id = reflectBand;
break;
}
zoneList_.push_back (zone);
@@ -132,6 +133,7 @@ Group::translateToColorName (const int color)
else if (color == Group::gap) label = "gap";
else if (color == Group::border) label = "border";
else if (color == Group::base) label = "base";
+ else if (color == Group::reflectBand) label = "reflectBand";
else label = "undefined";
return label;
}