File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 33 landmark_data = load_tabular_data(landmark_file_name ) ;
44 if isempty(landmark_data ) ,
55 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 ) ;
68 else
79 flipped_ijk0_from_landmark_index = landmark_data(: ,1 : 3 ) ;
810 % the landmark-detection code is run on the the raw (flipped in x and y) tiles,
1113 [ (tile_shape_ijk(1 )-1 ) - flipped_ijk0_from_landmark_index(: ,1 ) ...
1214 (tile_shape_ijk(2 )-1 ) - flipped_ijk0_from_landmark_index(: ,2 ) ...
1315 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 ) ;
1418 end
15- foreground_p_value_from_landmark_index = landmark_data(: ,4 ) ;
16- imagery_value_from_landmark_index = landmark_data(: ,5 ) ;
1719end
You can’t perform that action at this time.
0 commit comments