Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

leer video con opencv

import cv2

capture = cv2.VideoCapture('gato.avi')

while (capture.isOpened()):
    ret, frame = capture.read()
    if (ret == True):
        cv2.imshow("gato0", frame)
        if (cv2.waitKey(30) == ord('s')):
            break
    else:
        break

capture.release()
cv2.destroyAllWindows()
Comment

PREVIOUS NEXT
Code Example
Python :: description of imdb dataset python 
Python :: BeautifulSoup in pretty way 
Python :: chrome crushs in selenium 
Python :: spevify datatype of column 
Python :: python class udp 
Python :: getting over it 
Python :: bucket dataframe into ranges 
Python :: python API translate language into Igbo 
Python :: what is a good django orm cookbook 
Python :: print function in python 
Python :: class dog_years: years = 0 __ fido=Dog() fido.years=3 print(fido.dog_years()) 
Python :: bulk m4a to wav ffmepeg 
Python :: how to get device hwid cmd 
Python :: how to catch stop itteration in generator as None 
Python :: how to make a relationship in python 
Python :: oop - Apa metaclasses di Python 
Python :: Convert this bash command into Python echo have a nice day Quizlet 
Python :: how to start a working to run a particular queue 
Python :: bill wiliams fractal python pandas 
Python :: python directed graph 
Python :: permcheck codility python 
Python :: violin plot seaborn 
Python :: workbook select sheet python 
Python :: django array of dates 
Python :: how to play mp3 file form pygame module 
Python :: xmlrpc get all posts 
Python :: python filter function 
Python :: telephone number word generator python 
Python :: create file and store output python 
Python :: installing django on windows 
ADD CONTENT
Topic
Content
Source link
Name
2+7 =