Ask Your Question

tomasth's profile - activity

2017-11-03 05:48:25 -0600 marked best answer bitmap representation of a point cloud.

I have xyz surface data of an object which I'd like to display on the screen in a similar way as I would be able to in e.g. CloudCompare or MeshLab. My thought was to generate a bitmap using some pre-defined viewpoint.

I've loaded my xyz/pcd into a 3 channel 32 bit float Mat.

Does anyone know of a straightforward way to do this with opencv. I do not have viz.

2017-11-03 05:48:25 -0600 received badge  Scholar (source)
2017-10-31 10:03:46 -0600 commented question bitmap representation of a point cloud.

Thank you @berak. Not quite what I had in mind but maybe useful nonetheless. I guess what I want is closer to PCL land.

2017-10-31 08:57:17 -0600 asked a question bitmap representation of a point cloud.

bitmap representation of a point cloud. I have xyz surface data of an object which I'd like to display on the screen in

2017-10-31 06:54:39 -0600 asked a question Has support for older libtiff been dropped?

Has support for older libtiff been dropped? A recent code change in the libtiff integration has broken my build (trying

2017-10-26 17:26:39 -0600 commented question How to divide a contour futher into shapes

Have you considered HoughLines() and HoughCircles()? Think that should work.

2017-10-15 17:27:05 -0600 commented question Edge detection of foot in picture

Perhaps try color segmentation before edge detection?

2017-10-14 17:03:10 -0600 commented question Why self compiled Opencv is slower than apt-get package?

The answer should be found by calling std::cout << cv::getBuildInformation(); (or the python equivalent) for

2017-10-14 17:01:35 -0600 commented question Why self compiled Opencv is slower than apt-get package?

The answer should be found by calling std::cout << cv::getBuildInformation(); (or the python equivalent) for

2017-10-14 17:00:51 -0600 commented question Why self compiled Opencv is slower than apt-get package?

The answer should be found by calling std::cout << cv::getBuildInformation(); (or the python equivalent) for

2017-10-11 15:16:06 -0600 edited question Why is dynamic linking of IPP on 32 bit Linux disabled by default?

Dynamic linking of IPP on 32 bit Linux The CMake scripts will not allow dynamic linking of IPP under 32 bit Linux and ou

2017-10-11 15:14:32 -0600 edited question Are IPP integration wrappers needed to benefit from including IPP in openCV?

IPP integration wrappers needed? I'm getting the following message when compiling OpenCV with a local IPP package (dynam

2017-10-11 05:41:47 -0600 edited answer Optimization level for gcc linux 32

Ran a comparison test. Just my application using several opencv functions and classes compiled with -O3 or -O2 and timed

2017-10-11 05:34:40 -0600 answered a question Optimization level for gcc linux 32

Ran a comparison test. Just my application using several opencv functions and classes compiled with -O3 or -O2 and timed

2017-10-11 04:08:14 -0600 commented question Optimization level for gcc linux 32

Update: Back in '15 I tried compiling opencv 3.0 with -O3 and it did not work. I have since upgraded my gcc to 6.2 and n

2017-10-10 05:00:02 -0600 commented question Are IPP integration wrappers needed to benefit from including IPP in openCV?

Marked as duplicate but I cannot find the thread of which this could be a duplicate. Please help.@berak

2017-10-10 04:59:40 -0600 commented question Why is dynamic linking of IPP on 32 bit Linux disabled by default?

Marked as duplicate but I cannot find the thread of which this could be a duplicate. Please help.@berak

2017-10-10 04:49:11 -0600 commented question Are IPP integration wrappers needed to benefit from including IPP in openCV?

Marked as duplicate but I cannot find the thread of which this could be a duplicate. Please help.

2017-10-10 04:47:49 -0600 commented question Why is dynamic linking of IPP on 32 bit Linux disabled by default?

Marked as duplicate but I cannot find the thread of which this could be a duplicate. Please help.

2017-10-10 01:38:57 -0600 received badge  Enthusiast
2017-10-09 18:23:00 -0600 asked a question Can IPPiCV only be used with static opencv libraries?

Can IPPiCV only be used with static opencv libraries? Getting the following linker error when compiling dynamic librarie

2017-10-09 17:52:20 -0600 asked a question Are IPP integration wrappers needed to benefit from including IPP in openCV?

IPP integration wrappers needed? I'm getting the following message when compiling OpenCV with a local IPP package (dynam

2017-10-09 17:44:38 -0600 asked a question Why is dynamic linking of IPP on 32 bit Linux disabled by default?

Dynamic linking of IPP on 32 bit Linux The CMake scripts will not allow dynamic linking of IPP under 32 bit Linux and ou

2016-10-05 09:38:36 -0600 commented answer Multiple opencv 3 & IPP build issues

Dynamic linking may be the solution for me http://answers.opencv.org/question/51...

2016-10-05 09:21:36 -0600 commented answer Multiple opencv 3 & IPP build issues

Any new developments here? I'm having very similar issues. I got past the issue with the built-in IPP by moving to a fresh VM with no previous IPP installation. However, I'm also interested in using my own IPP since it may (or may not - can't find any information) improve performance even further. I'm running into linker errors which look like the same as Dan's but since the whole process is a part of a debian packaging script I'm not sure if I can use his solution.

2015-01-07 06:56:20 -0600 received badge  Organizer (source)
2014-11-26 05:51:11 -0600 answered a question Help detecting/tracking circles with findContours

Have you tried using minEnclosingCircle? Looks just right for the job

2014-11-25 05:34:51 -0600 asked a question Optimization level for gcc linux 32

Found this announcement

SPECIAL NOTE for Ubuntu x86 12.04 users: By default OpenCV is now built with "-O2" optimization flag >instead of "-O3" on 32-bit Linux. The compiler in the 32-bit version of Ubuntu 12.04 produces incorrect >code with "-O3", so it's strongly recommended not to use this flag.

You are welcome to try out the latest and greatest OpenCV!

Best regards, OpenCV development team.

I notice that -O2 is still used as default in the CMake files for v3.0 beta Is the issue with using -O3 not resolved for newer versions of gcc than what is supported by Ubuntu 12.04? Is there a significant performance penalty associated with having to use -O2 ?