Ask Your Question

Snyder's profile - activity

2016-03-08 03:20:54 -0600 received badge  Teacher (source)
2015-06-24 11:53:47 -0600 received badge  Necromancer (source)
2015-06-24 11:53:13 -0600 answered a question Canny edge detection applying to video, but converted video is not saving

Hello, I am not sure if you have found a solution or gave up, but this is what I have found. When you are using cv2.VideoWriter('output.avi',fourcc,fps,(width,height)) you are missing the last argument of the function, is_color. By default, that is set to true, but you need to set it to false. So just write cv2.VideoWriter('output.avi',fourcc,fps,(width,height),false) Your program should work then.