Is there a property to modify the marker size of a drawline graphics object?
2 views (last 30 days)
Show older comments
Turlough Hughes
on 26 Feb 2020
Commented: Turlough Hughes
on 2 Mar 2020
I'm using the drawline function and wondering if it would be possible to modify the marker sizes? If for example we have the following case:
I = imread('cameraman.tif');
imshow(I)
Position = [64 217; 154 96];
h = drawline('Position',Position)
I can modify the line width by writting:
h.LineWidth = 10 % or any number
Is there a property to do the same for the markers?
1 Comment
Sindar
on 26 Feb 2020
my guess would be either MarkerSize is the property you want, or it can't be changed
Accepted Answer
More Answers (0)
See Also
Categories
Find more on Graphics Object Programming in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!