sudheerachary / Mesh-Flow-Video-Stabilization

Online video stabilization using a novel MeshFlow motion model
310 stars 64 forks source link

SyntaxError: invalid syntax #17

Open ndc168 opened 4 years ago

ndc168 commented 4 years ago

Tried to run: python Stabilization.py shaky-5.avi

with the shaky-5.avi in the same src directory, and got this: File "Stabilization.py", line 23 print method.name+' has taken: '+str(end_time-start_time)+' sec' ^ SyntaxError: invalid syntax

naldoxable commented 4 years ago

im following

gyihasz commented 3 years ago

Put brackets around the print parameters: Right now it's: print a, 'b'

And it should be: print (a, 'b')