Ask Your Question

AlexB's profile - activity

2023-01-20 00:27:20 -0600 received badge  Notable Question (source)
2023-01-20 00:27:20 -0600 received badge  Popular Question (source)
2020-08-03 02:02:23 -0600 received badge  Famous Question (source)
2019-12-17 06:49:27 -0600 asked a question Should I use `pkg-config --libs opencv4` or `pkg-config --libs opencv`?

Should I use `pkg-config --libs opencv4` or `pkg-config --libs opencv`? Should I use LDFLAGS+= `pkg-config --libs open

2019-07-02 17:54:07 -0600 commented answer Does OpenCV-OpenVINO version supports Yolo v3 network?

Thanks! ""OpenCV can use OpenVINO backend" means that OpenVINO has some OpenCV compatibility, so it can take OpenCV Mat

2019-07-01 08:52:10 -0600 asked a question Does OpenCV-OpenVINO version supports Yolo v3 network?

Does OpenCV-OpenVINO version supports Yolo v3 network? As known OpenVINO can be used as backend for OpenCV-dnn module, a

2019-06-22 17:14:53 -0600 marked best answer Can I use NCS2 (VPU Myriad X) for acceleration cv::StereoBM?

Can I use NCS2 – Neural Compute Stick 2 (Myriad™ X) for acceleration cv::StereoBM and cv::StereoSGBM OpenCV functions in the last OpenCV 4.x versions?

Should I use custom OpenCV(OpenVINO) version? https://www.learnopencv.com/using-ope...

Note that OpenVINO ships with it’s own OpenCV version.

As known, OpenCV supports OpenVINO that uses Neural Compute Stick 2 (Myriad™ X): https://opencv.org/opencv-4-0-0.html

dnn module was updated with Deep Learning Deployment Toolkit from the OpenVINO™ toolkit R4

But can NCS2 be used for cv::StereoBM / cv::StereoSGBM instead of Deep Neural Networks?

2019-04-08 17:55:02 -0600 asked a question Can I use NCS2 (VPU Myriad X) for acceleration cv::StereoBM?

Can I use NCS2 (VPU Myriad X) for acceleration cv::StereoBM? Can I use NCS2 – Neural Compute Stick 2 (Myriad™ X) for acc

2019-01-31 17:30:18 -0600 asked a question How can I get weights from the trained SVM (regression)?

How can I get weights from the trained SVM (regression)? How can I get bias and array of weights from the trained SVM::T

2019-01-18 13:27:56 -0600 asked a question How can I check if the monitor is connected in Windows / Linux?

How can I check if the monitor is connected in Windows / Linux? How can I check if the monitor is connected in Windows /

2018-11-12 06:00:03 -0600 received badge  Notable Question (source)
2018-01-16 03:50:14 -0600 received badge  Popular Question (source)
2017-09-20 04:21:23 -0600 received badge  Famous Question (source)
2017-05-12 15:46:54 -0600 received badge  Notable Question (source)
2017-02-13 16:13:17 -0600 received badge  Popular Question (source)
2016-02-25 05:10:09 -0600 commented answer How can I get rotation-vector from Euler-angles?

But how can I construct the corresponding rotation matrix from Euler angles?

2016-02-25 03:07:23 -0600 received badge  Editor (source)
2016-02-25 03:05:56 -0600 asked a question How can I get rotation-vector from Euler-angles?

If I have 3 Euler-angles then how can I get rotation-vector to use it for camera-rotation in OpenCV-viz3d?

I.e. how can I get Vec3d( X, Y, Z) from Euler-angles (alfa, betta, gamma) to use in this code?

viz::Viz3d viz_3d_window("Viz window");
cv::Affine3d pose = viz_3d_window.getViewerPose();
viz_3d_window.setViewerPose( pose.rotate( Vec3d( X, Y, Z) ) );

cv::Affine3d::rotate(); https://github.com/Itseez/opencv/blob...

I can find Euler-angles from rotation-matrix by using RQDecomp3x3() or as shown in that question, but whether is there an inverse function in the OpenCV to find rotation-matrix from Euler-angles or better to find rotation-vector( Vec3d( X, Y, Z) )?

2015-12-25 04:55:20 -0600 received badge  Student (source)
2015-11-08 06:44:28 -0600 asked a question How can I use triangulatePoints() if I have only CameraParams?

How can I get 3x4 projection matricies of the first and the second cameras to use triangulatePoints() if I have only struct detail::CameraParams for each of two cameras which I got from detail::Estimator?

2015-10-24 06:49:38 -0600 received badge  Enthusiast
2015-10-16 17:50:09 -0600 commented answer Is there anywhere XML-files already trained to detection most popular objects?

Thank you for answer!

2015-10-16 17:47:05 -0600 received badge  Scholar (source)
2015-10-16 17:47:04 -0600 commented answer Is there anywhere XML-files already trained to detection most popular objects?

@StevenPuttemans The simplest way, I created repository on GitHub - most public place, and added you to Collaborators: https://github.com/AlexeyAB/OpenCV-de...

2015-10-16 05:35:37 -0600 received badge  Supporter (source)
2015-10-14 23:33:35 -0600 commented answer Detect cattle in drone video footage

@break Can this file (cow.xml) be used for the LatentSVMDetector (opencv2.4) instead of DPMDetector (opencv3.0)?

2015-10-14 23:33:34 -0600 asked a question Is there anywhere XML-files already trained to detection most popular objects?

I found ready treained XML-files only for face and its details (haarcascades), and for human body (HOG): https://github.com/Itseez/opencv/tree...

Is there anywhere a (database) link to XML-files already trained to detection of different objects: cars, planes, people, animals, plants and other most popular objects?

I'm interested in the XML-files for both types: HOG and CascadeClassifier (haarcascades)