Mesh-Flow-Video-Stabilization icon indicating copy to clipboard operation
Mesh-Flow-Video-Stabilization copied to clipboard

SyntaxError: invalid syntax

Open ndc168 opened this issue 4 years ago • 2 comments

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

ndc168 avatar Jun 06 '20 21:06 ndc168

im following

naldoxable avatar Sep 09 '20 11:09 naldoxable

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

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

gyihasz avatar Jan 20 '21 15:01 gyihasz