Making a Line Visible Over an Image in MATLAB
(Originally posted on Doug's MATLAB Video Tutorials blog.)
It can be difficult to see a line that is drawn over an image. The line is often lost in the background colors. That is why cursors are colored as they are, so that they are visible on any background. I demonstrate some code that makes a line more visible with the same technique.
function h = cursorLine(x,y,innerThickness, outerThickness)
if nargin == 2
innerThickness = 2;
outerThickness = 4;
end
h.thick = line(x,y);
h.thin = line(x,y);
set(h.thick, 'color', [1 1 1]);
set(h.thin, 'color', [0 0 0]);
set(h.thick, 'linewidth', outerThickness);
set(h.thin, 'linewidth', innerThickness);
Recorded: 10 Jun 2013
Featured Product
MATLAB
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 bat365 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 (한국어)