Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

OpenCV in Qpython

I'm developing a project (in Python) that does video processing using OpenCV. Now I'm planning to implement that in my android phone. I read that Qpython supports python on android. So is there any way to import third party libs like OpenCV in Qpython.

Thanks in advance.

like image 586
deepu Avatar asked Jul 14 '26 16:07

deepu


1 Answers

You can install opencv from qpython libraries(install from QPypi).

QPython --> Libraries --> QPypi --> opencv-qpython --> install

Use it as import cv

like image 91
ramakrishna Avatar answered Jul 16 '26 04:07

ramakrishna