Skip to content

Commit

Permalink
Added missing full-frame parameters to dmb.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eurybiadan committed Jul 24, 2018
1 parent 6f5ed0c commit ebef424
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions PARFS.m
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,7 @@
'n_columns_desinusoided', int32(size(vertical_fringes_desinusoid_matrix,1)),...
'n_columns_raw_sequence',int32(size(vertical_fringes_desinusoid_matrix,2)),...
'strip_n_frames_with_highest_ncc_value', NUM_FRAMES,...
'full_frame_n_frames_with_highest_ncc_value',NUM_FRAMES,...
'image_sequence_file_name', stack_fname{f,1},...
'reference_frame', 0,...
'secondary_sequences_file_names', [],...
Expand All @@ -150,6 +151,7 @@
'full_frame_max_displacement_threshold', int32(200),...
'full_frame_ncc_n_lines_to_ignore', int32(150),...
'min_overlap_for_cropping_strip_image',OVERLAP,...
'min_overlap_for_cropping_full_frame_image',OVERLAP,...
'strip_registration_required', true,...
'save_full_frame_registered_image', OUTPUT_FF_TIFS,...
'save_strip_registered_image', OUTPUT_TIFS,...
Expand Down
2 changes: 2 additions & 0 deletions write_dmb_file.m
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
dmb_dict = py.dict(pyargs('frame_strip_ncc_threshold', dmb_contents.frame_strip_ncc_threshold,...
'n_columns_desinusoided', dmb_contents.n_columns_desinusoided,...
'strip_n_frames_with_highest_ncc_value', dmb_contents.strip_n_frames_with_highest_ncc_value,...
'full_frame_n_frames_with_highest_ncc_value',dmb_contents.full_frame_n_frames_with_highest_ncc_value,...
'image_sequence_file_name', dmb_contents.image_sequence_file_name,...
'reference_frame', dmb_contents.reference_frame,...
'secondary_sequences_file_names', dmb_contents.secondary_sequences_file_names',...
Expand All @@ -33,6 +34,7 @@
'full_frame_max_displacement_threshold', dmb_contents.full_frame_max_displacement_threshold,...
'full_frame_ncc_n_lines_to_ignore', dmb_contents.full_frame_ncc_n_lines_to_ignore,...
'min_overlap_for_cropping_strip_image', dmb_contents.min_overlap_for_cropping_strip_image,...
'min_overlap_for_cropping_full_frame_image', dmb_contents.min_overlap_for_cropping_full_frame_image,...
'strip_registration_required', dmb_contents.strip_registration_required,...
'save_full_frame_registered_image', dmb_contents.save_full_frame_registered_image,...
'save_strip_registered_image', dmb_contents.save_strip_registered_image,...
Expand Down

0 comments on commit ebef424

Please sign in to comment.