forked from MouseLightPipeline/pipeline-featmatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_pointmatch_on_all_pairs_2020_11_26.m
68 lines (63 loc) · 3.62 KB
/
test_pointmatch_on_all_pairs_2020_11_26.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
do_force_computation = false ;
script_folder_path = fileparts(mfilename('fullpath')) ;
memo_folder_path = fullfile(script_folder_path, 'memos') ;
% Build an index of the paths to raw tiles
sample_date = '2020-11-26' ;
raw_tiles_path = sprintf('/groups/mousebrainmicro/mousebrainmicro/data/%s/Tiling', sample_date) ;
descriptors_path = fullfile('/nrs/mouselight/pipeline_output', sample_date, 'stage_3_descriptor_output') ;
%z_point_match_path = fullfile('/nrs/mouselight/pipeline_output', sample_date, 'stage_4_point_match_output') ;
z_point_match_path = fullfile(script_folder_path, 'test-outputs', sample_date, 'stage_4_point_match_output') ;
% Build the tile index
raw_tile_index = compute_or_read_from_memo(memo_folder_path, ...
sprintf('raw-tile-index-%s', sample_date), ...
@()(build_raw_tile_index(raw_tiles_path)), ...
do_force_computation) ;
tile_index_from_ijk1 = raw_tile_index.tile_index_from_ijk1 ;
ijk1_from_tile_index = raw_tile_index.ijk1_from_tile_index ;
xyz_from_tile_index = raw_tile_index.xyz_from_tile_index ;
relative_path_from_tile_index = raw_tile_index.relative_path_from_tile_index ;
raw_tile_map_shape = size(tile_index_from_ijk1)
tile_count = length(relative_path_from_tile_index)
% Determine which pairs will be run
central_tile_relative_path_from_pair_index = cell(tile_count,1) ;
other_tile_relative_path_from_pair_index = cell(tile_count,1) ;
central_tile_ijk1_from_pair_index = nan(tile_count, 3) ;
pair_count_so_far = 0 ;
for center_tile_index = 1 : tile_count ,
center_ijk1 = ijk1_from_tile_index(center_tile_index, :) ;
other_ijk1 = center_ijk1 + [0 0 1] ;
if all(other_ijk1 <= raw_tile_map_shape) ,
other_tile_index = tile_index_from_ijk1(other_ijk1(1), other_ijk1(2), other_ijk1(3)) ;
if ~isnan(other_tile_index) ,
% Found a pair, so add the relative paths to the lists
other_tile_relative_path = relative_path_from_tile_index{other_tile_index} ;
center_tile_relative_path = relative_path_from_tile_index{center_tile_index} ;
pair_count_so_far = pair_count_so_far + 1 ;
pair_index = pair_count_so_far ;
central_tile_relative_path_from_pair_index{pair_index} = center_tile_relative_path ;
other_tile_relative_path_from_pair_index{pair_index} = other_tile_relative_path ;
central_tile_ijk1_from_pair_index(pair_index, :) = center_ijk1 ;
end
end
end
pair_count = pair_count_so_far
central_tile_relative_path_from_pair_index = central_tile_relative_path_from_pair_index(1:pair_count) ; % trim
other_tile_relative_path_from_pair_index = other_tile_relative_path_from_pair_index(1:pair_count) ; % trim
% Run z point match on all tiles
fprintf('Running z-point-matching on %d valid tile pairs...\n', pair_count) ;
parfor_progress(pair_count) ;
for pair_index = 1 : pair_count ,
center_tile_relative_path = central_tile_relative_path_from_pair_index{pair_index} ;
other_tile_relative_path = other_tile_relative_path_from_pair_index{pair_index} ;
central_tile_ijk1 = central_tile_ijk1_from_pair_index(pair_index, :) ;
run_pointmatch_on_single_pair(raw_tiles_path, ...
descriptors_path, ...
z_point_match_path, ...
center_tile_relative_path, ...
central_tile_ijk1, ...
other_tile_relative_path)
parfor_progress() ;
end
parfor_progress(0) ;
% Declare victory
fprintf('Done running z-point-match for all tiles.\n') ;