Ask Your Question

AlexChan's profile - activity

2019-05-23 10:15:04 -0600 commented question cv::rodrigues rotation matrix not correct

Sorry for the bad network (the delay cause the duplicated pages). Do you have any ideas for the question?

2019-05-23 09:38:25 -0600 edited question cv::rodrigues rotation matrix not correct

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:21 -0600 asked a question cv::rodrigues rotation matrix not correct

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:21 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:21 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:20 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:20 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:18 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:18 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:15 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:15 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:04 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:04 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:37:03 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:58 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:57 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:55 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:51 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:45 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:43 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:43 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:33 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:33 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:33 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:31 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:11 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:08 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:04 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2019-05-23 09:36:04 -0600 asked a question cv::rodrigues rotation matrix not corret

cv::rodrigues rotation matrix not corret Hi all, After run cv::rodrigues(), I got the rotation matrix r3. res3 values

2017-12-07 03:59:56 -0600 marked best answer How to get a ROI with arbitrary shape?

Hello, the code is here

cv::Mat src = cv::imread("1.bmp", CV_LOAD_IMAGE_UNCHANGED);
cv::Mat mask = cv::Mat::ones(src.size(), CV_8UC1);
mask.row(10).setTo(255);
mask.col(20).setTo(255); // arbitary shape
cv::Mat roi;
src.copyTo(roi, mask); // get the roi

This is 1.bmp

image description

This is mask

image description

This is roi

image description

If I excute roi = roi + 10, the black parts of roi will also add 10, it's not what I want. How to get a roi without the black parts?

Thanks!

2017-12-07 03:58:30 -0600 answered a question How to get a ROI with arbitrary shape?

I have found a way to solve this problem. When you have got the mask, just keep it in the memory. After your operation

2017-11-28 07:35:23 -0600 received badge  Enthusiast
2017-11-27 19:39:29 -0600 commented question How to get a ROI with arbitrary shape?

Thanks for reply. Adding with a mask has solved this problem, but what about other operation? For example, roi.setTo(255

2017-11-27 08:26:16 -0600 edited question How to get a ROI with arbitrary shape?

How to set a ROI with arbitrary shape? Hello, the code is here cv::Mat src = cv::imread("1.bmp", CV_LOAD_IMAGE_UNCHANGE

2017-11-27 08:25:43 -0600 asked a question How to get a ROI with arbitrary shape?

How to set a ROI with arbitrary shape? Hello, the code is here cv::Mat src = cv::imread("1.bmp", CV_LOAD_IMAGE_UNCHANGE

2017-11-21 19:33:18 -0600 commented answer Where to find "TextBoxes_icdar13.caffemodel"?

thanks a lot!

2017-11-21 19:32:37 -0600 marked best answer Where to find "TextBoxes_icdar13.caffemodel"?

To find the text region in a picture with opencv3.3.1 contrib text example.

File path :" C:\opencv3.3.0\opencv_contrib-master\modules\text\sample\text_recognition_cnn.cpp"

link text

The main function needs the file named "TextBoxes_icdar13.caffemodel", but the file is not in this folder. It's weird! there is only a file named "textbox.prototxt" which may have some connection with it.

Does any body know where can I find the "TextBoxes_icdar13.caffemodel" ?

Thanks !

2017-11-21 19:15:32 -0600 commented answer How to create "trained_classifierNM1.xml"?

thanks! It takes me a long time to find the code, thanks a lot!

2017-11-21 19:13:10 -0600 marked best answer How to create "trained_classifierNM1.xml"?

For text detection, the cpp_file( opencv_contrib/module/text/example/textdetection.cpp) loads "trained_classifierNM1.xml" and "trained_classifierNM2.xml" to create 2 classifer. Does any body know which training set was used to create them?

As far as I know, "trained_classifierNM1.xml" was created by boost with some features, and "trained_classifierNM2.xml" was created by SVM.

The opencv_contrib link: link text The text detection paper link :link text

thanks in advance!

2017-11-21 19:13:10 -0600 received badge  Scholar (source)
2017-11-21 08:52:43 -0600 received badge  Student (source)
2017-11-21 08:49:28 -0600 edited question How to create "trained_classifierNM1.xml"?

How to create "trained_classifierNM1.xml"? For text detection, the cpp_file( opencv_contrib/module/text/example/textdete

2017-11-21 08:48:54 -0600 asked a question How to create "trained_classifierNM1.xml"?

How to create "trained_classifierNM1.xml"? For text detection, the cpp_file( opencv_contrib/module/text/example/textdete

2017-11-21 08:29:47 -0600 edited question Where to find "TextBoxes_icdar13.caffemodel"?

Where to find "TextBoxes_icdar13.caffemodel"? To find the text region in a picture with opencv3.3.1 contrib text example