Mesh-Flow-Video-Stabilization
Mesh-Flow-Video-Stabilization copied to clipboard
SyntaxError: invalid syntax
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
im following
Put brackets around the print parameters:
Right now it's:
print a, 'b'
And it should be:
print (a, 'b')