Ask Your Question

darshana.mistry's profile - activity

2020-03-22 14:18:11 -0600 received badge  Notable Question (source)
2018-09-05 10:12:41 -0600 received badge  Popular Question (source)
2017-05-06 06:20:59 -0600 asked a question Where xfeature2D.h file store in opencv3.0.0 or opencv3.1.0?

Hello all, I want to use SURF/SIFT algorithm using opencv3.0.0 or opencv3.1.0. But I did not get path of xfeatures2D.

Can you please help for same?

Thank you,

2016-11-05 12:50:51 -0600 commented answer How to decompose homography transformation matrix in opencv

Thank you for your great support. Do you know using decomposeHomographyMat() function display 4 different rotation matrix and translation vector? Why? Which we consider for our hands on. Thank you.

2016-11-05 06:49:33 -0600 commented answer How to decompose homography transformation matrix in opencv

Yes. it works. Now I want to display Rs and Ts. I have tried to display as vector. But it is not working. Do you know how to display vector<mat> value? Thank you,

2016-11-05 06:11:12 -0600 commented answer How to decompose homography transformation matrix in opencv

Can I change src folder's any file of Opencv?

2016-11-05 05:04:16 -0600 commented answer How to decompose homography transformation matrix in opencv

Thank you for valuable suggestions. Now my file is build but I got run time exception.

decomposeHomographyMat() return integer value. But when I use in my program as int nsols; nsols=cv::decomposeHomographyMat(H, camera_int_parameters, Rs, Ts, noArray()); cout << "Total solutions are as " << nsols << endl;

I got unhandled exception at run time.

Can you please help me for this?

Thank you.

2016-11-05 04:44:31 -0600 commented answer How to decompose homography transformation matrix in opencv

I am using header files as

include <stdio.h>

include<math.h>

include <iostream>

include<fstream>

include "opencv2/core.hpp"

include "opencv2/imgproc.hpp"

include "opencv2/features2d.hpp"

include "opencv2/highgui.hpp"

include "opencv2/calib3d.hpp"

//#include "D:/Darshana/Opencv_3_1_0/opencv/sources/modules/calib3d/src/precomp.hpp"

include "D:/Darshana/Opencv_3_1_0/opencv/sources/modules/calib3d/src/homography_decomp.cpp"

include <memory>

2016-11-05 04:08:10 -0600 answered a question How to decompose homography transformation matrix in opencv

Hello, decomposeHomographyMat is stored in OpenCv's source/modules/calib3d/src file.

When I use in my .cpp file using preprocessing directives in #include to use decomposeHomographyMat, I got errors

Error 1 error C1189: #error : this is a private header which should not be used from outside of the OpenCV library D:\Darshana\Opencv_3_1_0\opencv\build\include\opencv2\core\private.hpp 48 1 OM_Opencv_3_1 2 IntelliSense: #error directive: this is a private header which should not be used from outside of the OpenCV library d:\Darshana\Opencv_3_1_0\opencv\build\include\opencv2\core\private.hpp 48 4 OM_Opencv_3_1 3 IntelliSense: cannot open source file "ipp.h" d:\Darshana\Opencv_3_1_0\opencv\build\include\opencv2\core\private.hpp 194 1 OM_Opencv_3_1 4 IntelliSense: identifier "IppiSize" is undefined d:\Darshana\Opencv_3_1_0\opencv\build\include\opencv2\core\private.hpp 212 15 OM_Opencv_3_1 5 IntelliSense: identifier "IppiSize" is undefined d:\Darshana\Opencv_3_1_0\opencv\build\include\opencv2\core\private.hpp 218 15 OM_Opencv_3_1 6 IntelliSense: identifier "IppiBorderType" is undefined d:\Darshana\Opencv_3_1_0\opencv\build\include\opencv2\core\private.hpp 224 15 OM_Opencv_3_1 7 IntelliSense: identifier "IppDataType" is undefined d:\Darshana\Opencv_3_1_0\opencv\build\include\opencv2\core\private.hpp 233 15 OM_Opencv_3_1

Can you please help me to resolve these errors?

Thank you,

2016-10-19 02:00:37 -0600 asked a question How to decompose homography transformation matrix in opencv

Hello, I have found feature points detection and matching using SURF and based on homography transformation matrix. Now, I want to decompose homography transformation matrix to retrieve rotation and translation parameters. I have tried in opencv2.4.9 and all higher version. there is function for decomposePerspectiveMat but not for homography transformation matrix. This function is available for opencv3.0 and higher version. But before to use this function, I have to find feature points using SURF and xfeature2d as per documentation is required. But when we installed opencv3.1.0, then no file available like xfeature2d.hpp.

Can you please help to decompose homgraphy transformation matrix?

Thank you,

2016-02-24 02:17:32 -0600 answered a question Is stitching module able to stitch images taken from a parallel motion camera ?

How do you stitch your images? Using feature detection and matching then transformed of an image? If yes then, RANSAC is very useful to detect best inliner point from two corresponding images. and then you can apply transformation of an image.

2016-02-24 01:00:24 -0600 answered a question phase correlation for image registration(image stitching)

Hello, I am trying to get your code, but the page is not able to open. I have also tried to copy whole code, but which files have to import in code, it is missing. So, I got error as:

64  IntelliSense: identifier "fftw_complex" is undefined    c:\Users\Administrator\Documents\Visual Studio 2013\Projects\OM\OM\ImageStiching_Using_PhaseCorrelation.cpp 124 2   OM

ans so on.

Kindly provide me link from where I will get whole code.

Thank you.

2015-03-19 06:59:40 -0600 asked a question how to configure neural network with opencv?

Hello, I want to find shape detection using neural network? Can you please tell me steps for configuration of neural network with opencv?