File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 3
3
landmark_data = load_tabular_data(landmark_file_name ) ;
4
4
if isempty(landmark_data ) ,
5
5
ijk0_from_landmark_index = zeros(0 ,3 ) ;
6
+ foreground_p_value_from_landmark_index = zeros(0 ,1 ) ;
7
+ imagery_value_from_landmark_index = zeros(0 ,1 ) ;
6
8
else
7
9
flipped_ijk0_from_landmark_index = landmark_data(: ,1 : 3 ) ;
8
10
% the landmark-detection code is run on the the raw (flipped in x and y) tiles,
11
13
[ (tile_shape_ijk(1 )-1 ) - flipped_ijk0_from_landmark_index(: ,1 ) ...
12
14
(tile_shape_ijk(2 )-1 ) - flipped_ijk0_from_landmark_index(: ,2 ) ...
13
15
flipped_ijk0_from_landmark_index(: ,3 ) ] ;
16
+ foreground_p_value_from_landmark_index = landmark_data(: ,4 ) ;
17
+ imagery_value_from_landmark_index = landmark_data(: ,5 ) ;
14
18
end
15
- foreground_p_value_from_landmark_index = landmark_data(: ,4 ) ;
16
- imagery_value_from_landmark_index = landmark_data(: ,5 ) ;
17
19
end
You can’t perform that action at this time.
0 commit comments