Skip to main content

How to understand chart x-ray indicator colours in EXAMINE Pro

๐Ÿ‡ฆ๐Ÿ‡บ๐Ÿ‡ฌ๐Ÿ‡ง๐Ÿ‡ฎ๐Ÿ‡ช AU/UK/ROI only - Understanding indicator colours in EXAMINE Pro.

Hebe Neate-Clegg avatar
Written by Hebe Neate-Clegg
Updated this week

What do the chart x-ray indicator colours mean in EXAMINE Pro?

The classification of the image is based on the associated image type in EXAMINE Pro and the classification of this image type within the Dentally settings.

X-Ray & Panoral

Red getting progressively lighter each year until fully white when image is over 4 years old.

#define ZERO_TO_ONE_YEAR_RED RGB(255, 0, 0)

#define ONE_TO_TWO_YEAR_RED RGB(255, 64, 64)

#define TWO_TO_THREE_YEAR_RED RGB(255, 128, 128)

#define THREE_TO_FOUR_YEAR_RED RGB(255, 192, 192)

#define MORE_THAN_FOUR_YEARS RGB(255, 255, 255)

#define MORE_THAN_FOUR_YEARS RGB(255, 255, 255)

Photo & Intraoral

Green getting progressively lighter each year until fully white when image is over 4 years old.

#define ZERO_TO_ONE_YEAR_GREEN RGB(0, 255, 0)

#define ONE_TO_TWO_YEAR_GREEN RGB(64, 255, 64)

#define TWO_TO_THREE_YEAR_GREEN RGB(128, 255, 128)

#define THREE_TO_FOUR_YEAR_GREEN RGB(192, 255, 196)

#define MORE_THAN_FOUR_YEARS RGB(255, 255, 255)

Other

Blue getting progressively lighter each year until fully white when image is over 4 years old.

#define ZERO_TO_ONE_YEAR_BLUE RGB(0, 0, 255)

#define ONE_TO_TWO_YEAR_BLUE RGB(64, 64, 255)

#define TWO_TO_THREE_YEAR_BLUE RGB(128, 128, 255)

#define THREE_TO_FOUR_YEAR_BLUE RGB(192, 192, 255)

#define MORE_THAN_FOUR_YEARS RGB(255, 255, 255)

Unknown

Orange getting progressively lighter each year until fully white when image is over 4 years old.

#define ZERO_TO_ONE_YEAR_ORANGE RGB(255, 128, 0)

#define ONE_TO_TWO_YEAR_ORANGE RGB(255, 192, 64)

#define TWO_TO_THREE_YEAR_ORANGE RGB(255, 255, 128)

#define THREE_TO_FOUR_YEAR_ORANGE RGB(255, 255, 192)

#define MORE_THAN_FOUR_YEARS RGB(255, 255, 255)

Did this answer your question?