Skip to content

Commit fb70985

Browse files
committed
Fixed argument-order bug in compute_landmarks_for_patrick_pipeline.m
1 parent f550f61 commit fb70985

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

compute_landmarks_for_patrick_pipeline.m

+8-1
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,21 @@ function compute_landmarks_for_patrick_pipeline(p_map_root_path, landmarks_root_
88
do_run_in_debug_mode = false ;
99
end
1010

11+
% Out all the args to console, for debugging
12+
p_map_root_path %#ok<NOPRT>
13+
landmarks_root_path %#ok<NOPRT>
14+
tile_relative_path %#ok<NOPRT>
15+
do_force_computation %#ok<NOPRT>
16+
do_run_in_debug_mode %#ok<NOPRT>
17+
1118
% Make sure the output folder exists
1219
landmark_folder_path = fullfile(landmarks_root_path, tile_relative_path) ;
1320
ensure_folder_exists(landmark_folder_path) ;
1421

1522
% Run for all channels
1623
channel_count = 2 ;
1724
for channel_index = 1 : channel_count ,
18-
compute_landmarks_for_single_tile_channels(p_map_root_path, tile_relative_path, landmarks_root_path, ...
25+
compute_landmarks_for_single_tile_channels(p_map_root_path, landmarks_root_path, tile_relative_path, ...
1926
channel_index, ...
2027
do_force_computation, do_run_in_debug_mode) ;
2128
end

0 commit comments

Comments
 (0)