Skip to content

Commit

Permalink
added missing fields in FLAGS structure to viz/makeFrameMosaic.m viz/…
Browse files Browse the repository at this point in the history
…makeKymographC.m so they can be called from the command line without the FLAGS input.
  • Loading branch information
Paul Wiggins committed Aug 14, 2018
1 parent 4c203ae commit 608e767
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 3 additions & 0 deletions viz/makeFrameMosaic.m
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@
FLAGS.composite = 1;
FLAGS.f_flag = 1;
FLAGS.Outline_flag = 0;
FLAGS.filt = zeros( [1,10] );
FLAGS.include = true( [1,10] );
FLAGS.level = 0.7*ones( [1,10] );
end


Expand Down
4 changes: 3 additions & 1 deletion viz/makeKymographC.m
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
FLAGS.composite = 1;
FLAGS.f_flag = 1;
FLAGS.Outline_flag = 0;
FLAGS.filt = zeros( [1,10] );;
FLAGS.filt = zeros( [1,10] );
FLAGS.include = true( [1,10] );
FLAGS.level = 0.7*ones( [1,10] );
end


Expand Down

0 comments on commit 608e767

Please sign in to comment.