Ask Your Question

zyuwang's profile - activity

2019-06-10 22:47:58 -0600 marked best answer after build opencv with -DBUILD_SHARED_LIBS=OFF, I still need external libraries to run apps with opencv.

I use a ubuntu 1604 python 3.6 docker image to set up the build environments. And successfully built opencv python3 with -DBUILD_SHARED_LIBS=OFF.

But when I copy the cv2.cpython-36m-x86_64-linux-gnu.so file to other container base on a same image, I still need to set up environments to use this library such as libjpeg, libpng, libwebp and so on.

How can I get the same result with the case directly use "pip install opencv-python"? When I use pip install opencv-python, I don't need to set up others environments any more.

2019-06-10 22:47:58 -0600 received badge  Scholar (source)
2019-06-10 22:47:46 -0600 commented answer after build opencv with -DBUILD_SHARED_LIBS=OFF, I still need external libraries to run apps with opencv.

Hi, berak I still have a little problem here. I have added all the -DBUILD_xxx parameters which seem related ON now, but

2019-06-06 01:14:13 -0600 received badge  Enthusiast
2019-06-05 03:01:01 -0600 commented question CascadeClassifier doesn't work with cascade.xml trained by myself. It always blocked when use method detectMultiScale()

if necessary, here is the link of my cascade.xml file. link text

2019-06-05 02:25:39 -0600 edited question CascadeClassifier doesn't work with cascade.xml trained by myself. It always blocked when use method detectMultiScale()

CascadeClassifier doesn't work with model.xml trained by myself. It always blocked when use method detectMultiScale() I

2019-06-05 00:48:20 -0600 edited question CascadeClassifier doesn't work with cascade.xml trained by myself. It always blocked when use method detectMultiScale()

CascadeClassifier doesn't work with model.xml trained by myself. It always blocked when use method detectMultiScale() I

2019-06-05 00:48:20 -0600 received badge  Editor (source)
2019-06-05 00:43:06 -0600 asked a question CascadeClassifier doesn't work with cascade.xml trained by myself. It always blocked when use method detectMultiScale()

CascadeClassifier doesn't work with model.xml trained by myself. It always blocked when use method detectMultiScale() I

2019-06-05 00:28:03 -0600 asked a question CascadeClassifier trained by myself blocked while I use detectMultiScale().

CascadeClassifier trained by myself blocked while I use detectMultiScale(). I have built opencv from source detached at

2019-06-05 00:28:01 -0600 asked a question CascadeClassifier trained by myself blocked while I use detectMultiScale().

CascadeClassifier trained by myself blocked while I use detectMultiScale(). I have built opencv from source detached at

2019-06-05 00:28:01 -0600 asked a question CascadeClassifier trained by myself blocked while I use detectMultiScale().

CascadeClassifier trained by myself blocked while I use detectMultiScale(). I have built opencv from source detached at

2019-06-05 00:27:52 -0600 asked a question CascadeClassifier trained by myself blocked while I use detectMultiScale().

CascadeClassifier trained by myself blocked while I use detectMultiScale(). I have built opencv from source detached at

2019-06-05 00:27:52 -0600 asked a question CascadeClassifier trained by myself blocked while I use detectMultiScale().

CascadeClassifier trained by myself blocked while I use detectMultiScale(). I have built opencv from source detached at

2019-06-04 00:29:57 -0600 commented answer after build opencv with -DBUILD_SHARED_LIBS=OFF, I still need external libraries to run apps with opencv.

Thanks for your answer. I make it right now.

2019-05-30 05:33:39 -0600 asked a question after build opencv with -DBUILD_SHARED_LIBS=OFF, I still need external libraries to run apps with opencv.

after build opencv with -DBUILD_SHARED_LIBS=OFF, I still need external libraries to run apps with opencv. I use a ubuntu