-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtree_from_component_as_function.m
104 lines (87 loc) · 4.51 KB
/
tree_from_component_as_function.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
function maybe_named_tree = tree_from_component_as_function(component_id, ...
max_component_id, ...
A_for_component, ...
xyz_for_component, ...
size_threshold, ...
smoothing_filter_width, ...
length_threshold, ...
do_visualize, ...
sampling_interval)
% Plot the input
if do_visualize ,
f = figure('Color', 'w') ;
ax = axes(f) ;
l0 = gplot3(ax, A_for_component, xyz_for_component, 'b') ; % blue
hold(ax, 'on') ;
drawnow
end
% Get a spanning tree
degree = full(sum(A_for_component)) ;
degree_modified = degree ;
degree_modified(degree==0) = +inf ;
[~, min_degree_node_index] = min(degree_modified) ; % min degree is hopefully one, but sometimes not possible (e.g. if graph is just a loop)
dA_spanning = rooted_tree_from_connected_graph(A_for_component, min_degree_node_index) ;
A_spanning = max(dA_spanning, dA_spanning') ;
if do_visualize
l1 = gplot3(ax, A_spanning, xyz_for_component, 'Color', [0 0.5 0]) ; % green
drawnow
end
%%
[A_pruned, xyz_pruned] = prune_tree(A_spanning, xyz_for_component, length_threshold, do_visualize) ;
if do_visualize
l2 = gplot3(ax, A_pruned, xyz_pruned, 'r') ; % red
drawnow
end
%%
pruned_node_count = size(xyz_pruned, 1) ;
if pruned_node_count < size_threshold ,
% fprintf('Component with id %d fails to meet the size threshold (%d) after pruning, so discarding. (It contains %d nodes.)\n', ...
% component_id, ...
% size_threshold, ...
% pruned_node_count) ;
maybe_named_tree = [] ;
return
end
% Decompose tree into chains
G_pruned_as_chains = chains_from_tree(A_pruned) ;
% Smooth the z coords of chain nodes
xyz_smoothed = smooth_chains(G_pruned_as_chains, xyz_pruned, smoothing_filter_width) ;
%xyz_smoothed = xyz_pruned ;
% Visualize the smoothed tree
if do_visualize
l3 = gplot3(ax, A_pruned, xyz_smoothed, 'Color', [1 2/3 0]) ; % orange
drawnow
end
% Decimate chains
G_decimated_as_chains_using_pruned_node_ids = decimate_chains(G_pruned_as_chains, xyz_smoothed, sampling_interval) ;
%decimated_node_ids_from_chain_id = pruned_node_ids_from_chain_id ;
% Convert chains to edges
G_decimated_as_edges_using_pruned_node_ids = edges_from_chains(G_decimated_as_chains_using_pruned_node_ids) ;
% Defragment the node ids
[G_decimated_as_edges, xyz_decimated, pruned_node_id_from_decimated_node_id] = ...
defragment_node_ids_in_edges(G_decimated_as_edges_using_pruned_node_ids, xyz_smoothed) ;
% Convert edges to (sparse) adjacency
decimated_node_count = length(pruned_node_id_from_decimated_node_id) ;
A_decimated = undirected_adjacency_from_edges(G_decimated_as_edges, decimated_node_count) ;
% Visualize the decimated tree
if do_visualize
l4 = gplot3(ax, A_decimated, xyz_decimated, 'Color', [0.6 0 0.8]) ; % purple
legend([l0 l1 l2 l3 l4], {'original', 'tree', 'pruned', 'smoothed', 'decimated'}) ;
axis(ax, 'vis3d') ;
title(ax, sprintf('Component %d', component_id)) ;
xlabel(ax, 'x (um)') ;
ylabel(ax, 'y (um)') ;
zlabel(ax, 'z (um)') ;
drawnow
end
% Convert to a named tree
digits_needed_for_index = floor(log10(max_component_id)) + 1 ;
tree_name_template = sprintf('auto-cc-%%0%dd', digits_needed_for_index) ; % e.g. 'tree-%04d'
tree_name = sprintf(tree_name_template, component_id) ;
maybe_named_tree = named_tree_from_undirected_graph(A_decimated, xyz_decimated, tree_name) ;
% % Compute the output file path
% tree_mat_file_name = sprintf('%s.mat', tree_name) ;
% tree_mat_file_path = fullfile(output_folder_path, tree_mat_file_name);
% Write full tree as a .mat file
%save_named_tree_as_mat(tree_mat_file_path, named_tree) ;
end