Ask Your Question

h22's profile - activity

2020-03-26 04:36:35 -0600 received badge  Supporter (source)
2020-01-28 08:17:43 -0600 answered a question Is anyone using CLion IDE? Are there any guides for CLion with Opencv?

Add find_package(OpenCV 4.1.0 REQUIRED ) (or other version) to your CMakeLists.txt and it will be ready for you. Do not

2020-01-28 08:12:54 -0600 edited question How to see the contents of cv::Mat in debugger?

How to see the contents of cv::Mat in debugger? When debugging the C++ code, the IDE (I am using Clion) would show the c

2020-01-28 08:11:58 -0600 edited question How to see the contents of cv::Mat in debugger?

How to see the contents of cv::Mat in debugger? When debugging the C++ code, the IDE (I am using Clion) would show the c

2020-01-28 08:11:22 -0600 asked a question How to see the contents of cv::Mat in debugger?

How to see the contents of cv::Mat in debugger? When debugging the C++ code, the IDE (I am using Clion) would show the c

2020-01-28 08:03:46 -0600 commented answer Mat to raw Image

Link changed to 4.2.0

2020-01-28 08:03:25 -0600 received badge  Editor (source)
2020-01-28 08:03:25 -0600 edited answer Mat to raw Image

What you write is really a very "raw" data without even saying how many rows and columns are in the file, and how many b

2020-01-28 02:18:13 -0600 answered a question Problem with push_back

You are trying to add the item of the wrong type to the collection. For your code to work, arrayObjectPoints must be a

2020-01-27 11:58:50 -0600 received badge  Necromancer (source)
2020-01-27 11:17:48 -0600 received badge  Necromancer (source)
2020-01-27 11:13:52 -0600 answered a question Mat to raw Image

What you write is really a very "raw" data without even saying how many rows and columns are in the file, and how many b

2020-01-27 11:05:31 -0600 answered a question How to convert cv::Mat* to cv::Mat?

cv::Mat* is pointer to the cv::Mat. Believing that much, the trivial assignments should work: cv::Mat x; cv::Mat *x