-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Ian Stähli edited this page Apr 7, 2017
·
17 revisions
Welcome to the stove-state wiki!
Drawing functions are indexed [column, row]
:
cv2.circle(img, (column, row), 10, 255)
Numpy Arrays however are accessed [rows, column]
:
img[row, column]
[B G R] # Color information is returned as B-G-R vector.
Navigate to folder containing the clips and run:
for i in *.h264; do ffmpeg -i "$i" "${i%.h264}.mp4"; done
Windows: for %i in (*.h264) do ffmpeg -i "%i" "%i.mp4"