Skip to content

Commit

Permalink
PEP8 on example in README
Browse files Browse the repository at this point in the history
  • Loading branch information
deep-introspection committed Aug 19, 2016
1 parent 3baaee9 commit e6b9d45
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@ print 'elapsed time:' + str(time.time()-initTime)
print 'Motion correction...'
max_shift_h = 10
max_shift_w = 10
m, shifts, xcorrs, template = m.motion_correct(max_shift_w=max_shift_w, max_shift_h=max_shift_h, num_frames_template=None, template = None, method='opencv')
m, shifts, xcorrs, template = m.motion_correct(max_shift_w=max_shift_w,
max_shift_h=max_shift_h,
num_frames_template=None,
template=None,
method='opencv')
max_h, max_w = np.max(shifts, axis=0)
min_h, min_w = np.min(shifts, axis=0)
Expand Down

0 comments on commit e6b9d45

Please sign in to comment.