Answers for "open cv python"

74

install opencv python

pip install opencv-python
pip install opencv-contrib-python
Posted by: Guest on February-21-2020
2

open applications by python

dir = 'C:\\myprogram.exe'

import os
os.startfile(dir)
os.system(dir)

import subprocess
subprocess.Popen([dir])
subprocess.call(dir)
Posted by: Guest on July-20-2020
8

install opencv

sudo pip3 install opencv-contrib-python
Posted by: Guest on June-22-2020

Python Answers by Framework

Browse Popular Code Answers by Language