Skip to content

Commit

Permalink
optimized size of viewer
Browse files Browse the repository at this point in the history
  • Loading branch information
jcheong0428 committed Oct 6, 2017
1 parent 5e8d3eb commit 06e99e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion facesync/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def VideoViewer(path_to_video, data_df):

fps = wid.timebase**-1 # time base is play rate hard coded at 30fps

fig,ax = plt.subplots(1,1,figsize=(9,3)) # hardcode figure size for now..
fig,ax = plt.subplots(1,1,figsize=(6.5,3)) # hardcode figure size for now..
t=wid.current_time
ax.axvline(fps*t,color='k',linestyle='--') # cursor is always first of ax
# plot each column
Expand Down

0 comments on commit 06e99e7

Please sign in to comment.