-
Notifications
You must be signed in to change notification settings - Fork 1
/
add_bullseye.m
31 lines (24 loc) · 1.29 KB
/
add_bullseye.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
function add_bullseye()
global STL;
hSI = evalin('base', 'hSI');
hSICtl = evalin('base', 'hSICtl');
relevant_images = draw_on_image_get_images();
fov = hSI.hRoiManager.imagingFovUm;
bounds = [fov(3,1) - fov(1,1) fov(3,2) - fov(1,2)];
for i = relevant_images
fig_bounds = diff([get(hSICtl.hManagedGUIs(i).CurrentAxes, 'XLim')' get(hSICtl.hManagedGUIs(i).CurrentAxes, 'YLim')']);
fov_transform = diag([1 1] .* fig_bounds ./ bounds);
scale_bar_length = 10^floor(log10(bounds(1)*0.5));
scalelen = sprintf('%d {\\mu}m', scale_bar_length);
scale_bar_ypos = fov(end,end) - 0.1 * bounds(2);
z = draw_on_image_get_z(hSICtl.hManagedGUIs(i).CurrentAxes);
sizes = round(linspace(2, 18, 6).^2);
hold on;
for j = sizes
plot3(0, 0, z, 'ro', 'MarkerSize', j, 'Parent', hSICtl.hManagedGUIs(i).CurrentAxes);
end
hold off;
%line(scale_bar_pos(1,:), scale_bar_pos(2,:), [z z], 'Parent', hSICtl.hManagedGUIs(i).CurrentAxes, 'Color', [1 0 0], 'LineWidth', 11);
%text(0, scale_bar_pos(2,1), z, scalelen, 'HorizontalAlignment', 'center', 'VerticalAlignment', 'middle', 'Parent', hSICtl.hManagedGUIs(i).CurrentAxes, 'Color', [1 1 1]);
end
end