Ask Your Question

yxchng's profile - activity

2020-09-21 06:56:55 -0600 received badge  Notable Question (source)
2020-03-26 09:03:02 -0600 received badge  Popular Question (source)
2020-01-22 23:38:46 -0600 received badge  Popular Question (source)
2019-03-15 01:42:36 -0600 received badge  Enthusiast
2019-02-12 18:20:07 -0600 commented question Why am I getting "undefined symbol:_ZN2cv6detail17check_failed_autoEmmRKNS0_12CheckContextE" error?

Yup and I have tried multiple versions of OpenCV, 3.4.5, 3.4.3, 3.4.1

2019-02-12 09:15:50 -0600 received badge  Editor (source)
2019-02-12 09:15:50 -0600 edited question Why am I getting "undefined symbol:_ZN2cv6detail17check_failed_autoEmmRKNS0_12CheckContextE" error?

Why am I getting "undefined symbol:_ZN2cv6detail17check_failed_autoEmmRKNS0_12CheckContextE" error? Why am I getting the

2019-02-12 09:02:35 -0600 asked a question Why am I getting "undefined symbol:_ZN2cv6detail17check_failed_autoEmmRKNS0_12CheckContextE" error?

Why am I getting "undefined symbol:_ZN2cv6detail17check_failed_autoEmmRKNS0_12CheckContextE" error? Why am I getting the

2019-02-12 09:02:33 -0600 asked a question Why am I getting "undefined symbol:_ZN2cv6detail17check_failed_autoEmmRKNS0_12CheckContextE" error?

Why am I getting "undefined symbol:_ZN2cv6detail17check_failed_autoEmmRKNS0_12CheckContextE" error? Why am I getting the

2018-04-19 05:11:01 -0600 asked a question Unable to compile OpenCV with CUDA9 and gcc6

Unable to compile OpenCV with CUDA9 and gcc6 My system: CUDA 9.0 cudnn 7.1 gcc6/g++6 Encounter the following error: `

2017-09-02 04:22:10 -0600 commented question Error running OpenCV for python (ubuntu 16.04)

Hi have you solve the problem?

2017-05-18 23:14:50 -0600 asked a question Why I can't use estimateRigidTransform?
vector<cv::Point2f> dest5Points = {
    cv::Point2f(30.2946, 51.6963),
    cv::Point2f(65.5318, 51.5014),
    cv::Point2f(48.0252, 71.7366),
    cv::Point2f(33.5493, 92.3655),
    cv::Point2f(62.7299, 92.2041)
};

vector<cv::Point2f> source5Points = {
    cv::Point2f(stof(tokens[1]), stof(tokens[2])),
    cv::Point2f(stof(tokens[3]), stof(tokens[4])),
    cv::Point2f(stof(tokens[5]), stof(tokens[6])),
    cv::Point2f(stof(tokens[7]), stof(tokens[8])),
    cv::Point2f(stof(tokens[9]), stof(tokens[10]))
};

cv::Mat warp_mat = cv::estimateRigidTransform(source5Points, dest5Points, false);

I am using estimateRigidTransform the way above. However, i am getting the error "undefined reference to `cv::estimateRigidTransform(cv::_InputArray const&, cv::_InputArray const&, bool)'"

Does anyone know how to solve this? Thanks

2017-03-08 04:20:47 -0600 asked a question Why do I have the following error when using videoWriter.write()?

OpenCV Error: Assertion failed (image->depth == 8) in writeFrame, file /home/yxchng/OpenCV/modules/videoio/src/cap_ffmpeg.cpp, line 272

However, i am able to use imwrite() to write each frame.

Can I know how I can solve this problem?