-
Notifications
You must be signed in to change notification settings - Fork 0
/
pad_and_find_candidate_somata_then_save.m
26 lines (25 loc) · 1.52 KB
/
pad_and_find_candidate_somata_then_save.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
function pad_and_find_candidate_somata_then_save(somata_mat_file_path, ...
rendered_folder_path, ...
gfp_channel_index, ...
background_channel_index, ...
zoom_level, ...
origin_at_zoom_level_xyz, ...
spacing_at_zoom_level_xyz, ...
substack_origin_ijk1, ...
substack_shape_ijk, ...
pad_depth_in_um, ...
parameters)
feature_struct_from_candidate_index = ...
pad_and_find_candidate_somata(rendered_folder_path, ...
gfp_channel_index, ...
background_channel_index, ...
zoom_level, ...
origin_at_zoom_level_xyz, ...
spacing_at_zoom_level_xyz, ...
substack_origin_ijk1, ...
substack_shape_ijk, ...
pad_depth_in_um, ...
parameters) ;
save(somata_mat_file_path, ...
'feature_struct_from_candidate_index') ;
end