-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Miro Voellmy edited this page Apr 3, 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 *.avi; do ffmpeg -i "$i" "${i%.avi}.mov"; done