RGB.m

RGB() converts a color index or name into an RGB triple with real-valued components in [0,1].
3,9K Downloads
Aktualisiert 17 Mai 2009

Lizenz anzeigen

OVERVIEW

The Matlab function RGB() converts a color index (whole number from 1-21), English name of a color (string), or RGB triple with whole number components in {0, 1, ..., 255} into an RGB triple with real-valued components in [0,1]. RGB() allows the user to access a set of 21 colors via their common English names. For eight of these colors that have more than one common name, the program accepts alternative names, reducing the memory burden on the user.

INPUTS

- index_or_name can be a color index (whole number from 1-21), a string containing the name of a color in lower case, an RGB triple with elements in [0,1], or an RGB triple with elements in [0,255]. Note that some colors have more than one name, in which case any of these may be used. See the code for the list of color names.

OUTPUTS

- RGB is a length-3 vector of RGB components that can be used as a color specifier with any of the Matlab graphics functions.

If the input is an RGB triple with elements in [0,1], it is returned to
the calling program without modification.

If the input is an RGB triple with elements in [0,255], it is scaled by
1/255 and then returned.

If the input is a color index (1-21), it is converted to an RGB triple
via direct table lookup.

If the input is the name of a color, a search is done to find a matching name, and the corresponding RGB triple is returned.

Zitieren als

Phillip M. Feldman (2024). RGB.m (https://www.mathworks.com/matlabcentral/fileexchange/24015-rgb-m), MATLAB Central File Exchange. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2008b
Kompatibel mit allen Versionen
Plattform-Kompatibilität
Windows macOS Linux
Kategorien
Mehr zu Octave finden Sie in Help Center und MATLAB Answers
Quellenangaben

Inspiriert: Convert between RGB and Color Names

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Veröffentlicht Versionshinweise
1.2.0.0

Added information on dependencies.

1.1.0.0

Split out files in .zip as separate items.

1.0.0.0