Ask Your Question

superfly's profile - activity

2020-11-11 14:14:11 -0600 marked best answer line extension beyond 2 points how to extrapolate

No prob with this:

cv::line(color_img, points[0], points[1], Scalar(255, 255, 255), 1, LINE_8, 0);

How can I extend the line beyond each point(s). A different OpenCV fx?

2020-11-11 14:13:06 -0600 commented answer line extension beyond 2 points how to extrapolate

Update: I get it now. Once I broke apart the range it made a lot more sense, programmatically as well.

2020-11-11 13:58:01 -0600 commented answer line extension beyond 2 points how to extrapolate

Thanks for the answer. Wanted to further clarify implementation. Does P need to be an array of points? e Point2d P;

2020-11-11 13:56:51 -0600 commented answer line extension beyond 2 points how to extrapolate

Thanks for the answer. Wanted to further clarify implementation. Does P need to be an array of points? Point2d P;

2020-11-11 09:54:01 -0600 asked a question line extension beyond 2 points how to extrapolate

line extension beyond 2 points how to extrapolate No prob with this: cv::line(color_img, points[0], points[1], Scalar(2

2020-10-08 01:18:38 -0600 received badge  Nice Answer (source)
2020-10-07 22:15:03 -0600 received badge  Teacher (source)
2020-10-07 16:00:40 -0600 received badge  Self-Learner (source)
2020-10-07 14:38:16 -0600 marked best answer how do I add missing module cv::drawFrameAxes without breaking installation

I haven't had any problem with current opencv until I tried to use for the first time: cv::drawFrameAxes(...

Compiler VS2017

Error C3861 'drawFrameAxes': identifier not found solutionTransformObjPoints Error C2039 'drawFrameAxes': is not a member of 'cv' solutionTransformObjPoints c:\users\clang\desktop\working folder\solutiontransformobjpoints\solutiontransformobjpoints\solutiontransformobjpoints.cpp 263

Can any one help me fix this? I don't want to break this installation over a module.

General configuration for OpenCV 3.4.1 ===================================== Version control: 3.4.1

Platform: Timestamp: 2018-02-23T13:47:28Z Host: Windows 10.0.16299 AMD64 CMake: 3.9.3 CMake generator: Visual Studio 15 2017 Win64 CMake build tool: C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional/MSBuild/15.0/Bin/MSBu

2020-10-07 14:38:16 -0600 received badge  Scholar (source)
2020-10-07 14:36:18 -0600 answered a question how do I add missing module cv::drawFrameAxes without breaking installation

Ok, so to benefit from the drawFrameAxes function per Berak's assessment I reluctantly at first upgraded to Opencv 4.4.

2020-10-03 12:05:37 -0600 commented answer how do I add missing module cv::drawFrameAxes without breaking installation

Thank you. Can you please recommend a site/tutorial that you trust for upgrading opencv, if that's allowed?

2020-10-02 16:28:04 -0600 edited question how do I add missing module cv::drawFrameAxes without breaking installation

how do I add missing module without breaking installation I haven't had any problem with current opencv until I tried to

2020-10-02 15:57:55 -0600 asked a question how do I add missing module cv::drawFrameAxes without breaking installation

how do I add missing module without breaking installation I haven't had any problem with current opencv until I tried to

2020-08-26 09:38:54 -0600 commented question result coordinate type

CV_FX, CV_FY, CV_CX, CV_CY belong to K (camera intrinsics). class Plane { public: Vec3d cal_vector(Point3d

2020-08-25 13:16:56 -0600 asked a question result coordinate type

result coordinate type I have been making intersection point calculations between parametric line eqs and planes in open

2020-07-14 15:16:24 -0600 commented question why invert pose

This may be a nomenclature issue for me. When you state "camera frame" do you mean camera space coordinates? And when yo

2020-07-13 13:56:31 -0600 commented question why invert pose

Thank you, read this before and successfully modeled it. What I m getting at is less theoretical: what will inverting po

2020-07-13 13:55:52 -0600 commented question why invert pose

Thank you, read this before and successfully modeled it. What I m getting at is less theoretical: what will inverting po

2020-07-13 13:54:06 -0600 commented question why invert pose

Thank you, read this before. I have successfully modeled this with OpenCV. What I m getting at is what inverting pose wi

2020-07-13 09:33:28 -0600 commented question Laser pointer ideas?

If you are thresholding the dot detection for brightness, shape roundness and of a small area, and have an IR bandpass s

2020-07-12 13:15:56 -0600 asked a question why invert pose

why invert pose I have a pose output from solvepnp(), not a prob. Many sources suggest to take the inverse of the pose.

2020-07-12 13:15:56 -0600 asked a question why invert pose

why invert pose I have a pose output from solvepnp(), not a prob. Many sources suggest to take the inverse of the pose.

2020-06-15 12:14:18 -0600 asked a question Cx, Cy not equal to specs?

Cx, Cy not equal to specs? My K(intrinsic parameter) from opencv calibration is CX = 378.322 and CY = 222.498. Imager re

2020-04-28 14:59:21 -0600 edited answer sample v for inclusion in parametric equation

One vector of the line should be a direction vector, and this is v. The second point Po can be anywhere on the line that

2020-04-28 14:57:40 -0600 received badge  Self-Learner (source)
2020-04-28 14:48:35 -0600 answered a question sample v for inclusion in parametric equation

One vector of the line should be a direction vector, and this is v. The second point Po can be anywhere on the line that

2020-04-28 13:03:19 -0600 edited question 4 x 4 or 3 x 4 format?

4 x 4 or 3 x 4 format? I have a 3 x 4 matrix of -R|t information. Seems fine. However I came across an exercise where a

2020-04-28 13:02:51 -0600 edited question 4 x 4 or 3 x 4 format?

4 x 4 or 3 x 4 format? I have a 3 x 4 matrix of -R|t information. Seems fine. However I came across an exercise where a

2020-04-28 12:57:32 -0600 asked a question 4 x 4 or 3 x 4 format?

4 x 4 or 3 x 4 format? I have a 3 x 4 matrix of -R|t information. Seems fine. However I came across an exercise where a

2020-04-17 14:06:41 -0600 asked a question sample v for inclusion in parametric equation

sample v for inclusion in parametric equation I am working through the following equation in the plane-line intersectio

2020-04-14 21:29:02 -0600 commented answer when to normalize data

Lets say my camera captures several dots. On these dots I calculate a few vectors. And from these vectors I get a cross

2020-04-12 11:52:54 -0600 edited question when to normalize data

when to normalize data Regarding raw image data in opencv at what point am I supposed to normalize the data? While calcu

2020-04-12 11:50:43 -0600 received badge  Editor (source)
2020-04-12 11:50:43 -0600 edited question when to normalize data

when to normalize data Regarding raw image data in opencv at what point am I supposed to normalize the data? While calcu

2020-04-12 11:49:53 -0600 asked a question when to normalize data

when to normalize data Regarding raw image data in opencv at what point am I supposed to normalize the data? While calcu

2020-02-14 15:10:33 -0600 received badge  Enthusiast
2020-01-19 10:55:30 -0600 commented answer vector results inconsistent what am I doing?[SOLVED]

Excellent! Thank you! std::cout << "by Mat" << std::endl; Mat PQ = (Mat_<float>(3, 1) << 1.

2020-01-19 10:55:12 -0600 commented answer vector results inconsistent what am I doing?[SOLVED]

Excellent! Thank you! std::cout << "by Mat" << std::endl; Mat PQ = (Mat_<float>(3, 1) << 1.

2020-01-19 10:54:06 -0600 commented answer vector results inconsistent what am I doing?[SOLVED]

Excellent! Thank you! std::cout << "by Mat" << std::endl; Mat PQ = (Mat_<float>(3, 1) << 1.

2020-01-19 10:53:31 -0600 commented answer vector results inconsistent what am I doing?[SOLVED]

Excellent! Thank you! estd::cout << "by Mat" << std::endl; Mat PQ = (Mat_<float>(3, 1) << 1

2020-01-19 10:52:09 -0600 commented answer vector results inconsistent what am I doing?[SOLVED]

Excellent! Thank you! estd::cout << "by Mat" << std::endl; Mat PQ = (Mat_<float>(3, 1) << 1

2020-01-19 10:51:31 -0600 commented answer vector results inconsistent what am I doing?[SOLVED]

Excellent! Thank you! estd::cout << "by Mat" << std::endl; Mat PQ = (Mat_<float>(3, 1) << 1

2020-01-19 10:50:26 -0600 commented answer vector results inconsistent what am I doing?[SOLVED]

Excellent! Thank you! estd::cout << "by Mat" << std::endl; Mat PQ = (Mat_<float>(3, 1) << 1

2020-01-18 22:04:22 -0600 asked a question vector results inconsistent what am I doing?[SOLVED]

vector results inconsistent what am I doing? Hi, I am getting 2 different vector-cross product results, one from OpenCV