Skip to content

Commit

Permalink
Reduced line width, made line slightly transparent
Browse files Browse the repository at this point in the history
  • Loading branch information
Shrediquette committed Jun 12, 2024
1 parent e8e53df commit a36e230
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion +extract/set_points_Callback.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@ function set_points_Callback(~, ~, ~)
regionOfInterest = images.roi.Line;
regionOfInterest.LabelVisible = 'off';
regionOfInterest.Tag = 'RegionOfInterest';
regionOfInterest.Color = 'g';
regionOfInterest.Color = 'b';
regionOfInterest.StripeColor = 'y';
try
regionOfInterest.LineWidth=1.5;
regionOfInterest.EdgeAlpha=0.66; %I don't find documentation on when this feature was added... :(
catch
end

axes(gui.retr('pivlab_axis'))
draw(regionOfInterest);
Expand Down

0 comments on commit a36e230

Please sign in to comment.