/
Alx89
/
OpenCV-Python
Обзор
Документация
Войти
/
Alx89
/
OpenCV-Python
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
60
tests/test.py
17 строк
370 B
Olli-Pekka Heinisuo
fix line endings
11 окт 2020, 17:13
11 окт 2020, 17:13
6ee82a3
Код
Авторство
О чём код?
import unittest import sys class OpenCVTest(unittest.TestCase): """ Simple functionality tests. """ def test_import(self): """ Test that the cv2 module can be imported. """ import cv2 def test_video_capture(self): import cv2 cap = cv2.VideoCapture("SampleVideo_1280x720_1mb.mp4") self.assertTrue(cap.isOpened())