Ask Your Question

Ani_Cv's profile - activity

2019-07-02 11:08:36 -0600 commented question Bus error (core dumped) while declaring cv::Mat

I want to allocate (point_cloud->width , 3) data in a 2D float matrix.

2019-07-02 11:07:54 -0600 commented question Bus error (core dumped) while declaring cv::Mat

I want to allocate (point_cloud->width , 3) number 2D float matrix.

2019-07-02 11:04:26 -0600 commented question Bus error (core dumped) while declaring cv::Mat

sz2 = cv::Size(4,1); float arr1 [4] = {0, 1,2,3}; cv::Mat M = Mat(sz2, CV_32FC1, arr1); this is the part that i

2019-07-02 11:00:46 -0600 commented question Bus error (core dumped) while declaring cv::Mat

sz2 = cv::Size(4,1); float arr1 [4] = {0, 1,2,3}; cv::Mat M = Mat(sz2, CV_32FC1, arr1); this is the part that is modifi

2019-07-02 11:00:15 -0600 commented question Bus error (core dumped) while declaring cv::Mat

sz2 = cv::Size(4,1); float arr1 [4] = {0, 1,2,3}; cv::Mat M = Mat(sz2, CV_32FC1, arr1); this is the part that is modi

2019-07-02 10:59:50 -0600 commented question Bus error (core dumped) while declaring cv::Mat

sz2 = cv::Size(4,1); float arr1 [4] = {0, 1,2,3}; cv::Mat M = Mat(sz2, CV_32FC1, arr1); this is the part that i

2019-07-02 10:59:22 -0600 commented question Bus error (core dumped) while declaring cv::Mat

sz2 = cv::Size(4,1); float arr1 [4] = {0, 1,2,3}; cv::Mat M = Mat(sz2, CV_32FC1, arr1); this is the part that i

2019-07-02 10:58:46 -0600 commented question Bus error (core dumped) while declaring cv::Mat

sz2 = cv::Size(4,1); float arr1 [4] = {0, 1,2,3}; cv::Mat M = Mat(sz2, CV_32FC1, arr1); this is the part that is modifi

2019-07-02 09:44:00 -0600 commented answer Bus error (core dumped) while declaring cv::Mat

ok, I modified to float arr . Still same. I do not understand your second point.

2019-07-02 07:57:07 -0600 edited question Bus error (core dumped) while declaring cv::Mat

Bus error (core dumped) while declaring cv::Mat Hi, I have been dealing with very simple matrices. The code snippet is b

2019-07-02 07:55:40 -0600 asked a question Bus error (core dumped) while declaring cv::Mat

Bus error (core dumped) while declaring cv::Mat Hi, I have been dealing with very simple matrices. The code snippet is b

2019-07-02 01:38:25 -0600 received badge  Enthusiast
2019-07-01 03:05:20 -0600 marked best answer ippverion.h, ipp.h not found while building using 'make'

Hi, I am trying to compile a piece of code taken from github, that requires opencv header files. During compilation I got stuck. In the terminal I find fatal error: ippversion.h: No such file or directory. The same happens for ipp.h. Following relevant part from my CMake Lists,txt.

    Set(OpenCV_DIR /home/anindya/opencv/build)
find_package(OpenCV REQUIRED COMPONENTS core)
include_directories (include ${OpenCV_INCLUDE_DIRS})

    add_library(${PROJECT_NAME}
include/precomp.hpp)
target_link_libraries(${OpenCV_LIBRARIES})

The precomp.hpp contains private.hpp. ippversion.h and ipp.h are included with in private.hpp. I do not understand why the compiler cannot find these files where as some other files within a shallow directory in opencv is found. Expecting some help.

2019-07-01 00:57:43 -0600 answered a question ippverion.h, ipp.h not found while building using 'make'

There was an issue with installation of library earlier. I uninstalled opencv and re-installed it. I do not need to call

2019-06-28 03:11:18 -0600 commented question ippverion.h, ipp.h not found while building using 'make'

updated target_link_librariers in the main question statement. Same result. I was actually trying to compile https://gi

2019-06-28 03:05:41 -0600 edited question ippverion.h, ipp.h not found while building using 'make'

ippverion.h, ipp.h not found while building using 'make' Hi, I am trying to compile a piece of code taken from github, t

2019-06-28 02:53:16 -0600 commented question ippverion.h, ipp.h not found while building using 'make'

I can include #include "opencv2/core/ocl.hpp" #include "opencv2/imgproc.hpp" #include "opencv2/calib3d.hpp" #inclu

2019-06-28 02:52:59 -0600 commented question ippverion.h, ipp.h not found while building using 'make'

I can include #include "opencv2/core/ocl.hpp" include "opencv2/imgproc.hpp" include "opencv2/calib3d.hpp" include

2019-06-28 02:50:42 -0600 edited question ippverion.h, ipp.h not found while building using 'make'

ippverion.h, ipp.h not found while building using 'make' Hi, I am trying to compile a piece of code taken from github, t

2019-06-28 00:15:23 -0600 commented question ippverion.h, ipp.h not found while building using 'make'

my bad. I corrected the question statement now. include_directories in my CMakeLists.txt is as it is posted here.

2019-06-28 00:14:04 -0600 received badge  Editor (source)
2019-06-28 00:14:04 -0600 edited question ippverion.h, ipp.h not found while building using 'make'

ippverion.h, ipp.h not found while building using 'make' Hi, I am trying to compile a piece of code taken from github, t

2019-06-27 17:19:29 -0600 asked a question ippverion.h, ipp.h not found while building using 'make'

ippverion.h, ipp.h not found while building using 'make' Hi, I am trying to compile a piece of code taken from github, t