getColor
Get color used to draw ROI object
getColor
is not recommended. Using the new ROIs, retrieve the color
of the ROI by accessing the value of Color
property instead. For more
information, see Version History.
Syntax
Description
Input Arguments
Output Arguments
color
— RGB color value
3-element numeric vector
RGB color value, returned as a 3-element numeric vector.
Version History
Introduced before R2006aR2018b: getColor
is not recommended
Starting in R2018b, a new set of ROI objects replaces the existing set of ROI objects. The new objects provide more functional capabilities, such as face color transparency. The new classes also support events that you can use to respond to changes in your ROI such as moving or being clicked. Although there are no plans to remove the old ROI objects at this time, switch to the new ROIs to take advantage of the additional capabilities and flexibility. For more information on creating ROIs using the new ROI functions, see Create ROI Shapes.
To retrieve the color of the new ROIs, access the value of the
Color
property of the ROI.
Update all instances of getColor
.
Discouraged Usage | Recommended Replacement |
---|---|
This example creates an ROI and uses
imshow('cameraman.tif');
h = imrect(gca,[10 10 100 100]);
rgb = getColor(h)
| Here is equivalent code, replacing the old ROI with the
new ROI object and then accessing the value of the
imshow('cameraman.tif'); h = drawrectangle(gca,'Position',[10 10 100 100]); rgb = h.Color |
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)