-
The first three URLs in the reference section appears to be including a word from the next sentence (the tag is not terminated in the correct position), rendering them incorrect.
Page:
http://opencv.willowgarage.com/documentation/cpp/random_trees.html.
2009-11-16 17:46:56 UTC by amroamroamro
-
I am using OpenCV with STLport and get the following compilation error in 3rdParty/flann/util/common.h.
cannot convert from 'const char *' to 'const stlpdx_std::string'
To perform this conversion STL's is needed. In your implementation of STL this is obviously included via , however this is not the case when using STLport. Could you modify common.h to explicitly...
2009-11-16 17:05:52 UTC by denisstack
-
I think the windows version of cvShowImage should maintain the aspect ratio of the image like the linux version. I've attached a copy of window_w32.cpp I modified to achieve this effect. It uses the existing StretchBlt and a CvRect rather than cvResize like the linux version.
2009-11-16 15:49:01 UTC by indeliblesteve
-
Would you consider namespacing the libml that is distributed with OpenCV? There are a couple other projects named ML, notably (for me) the multilevel preconditioner which conflicts with my recent installation of OpenCV.
I would suggest renaming it libcvml, but of course you have to weigh the annoyance of changing your API (the way a user links is part of your API) with the namespace conflict.
2009-11-16 13:40:42 UTC by Jed Brown
-
First of all I don't understand difference between BORDER_REFLECT_101 and BORDER_REFLECT
Anyway copyMakeBorder function, called with BORDER_REFLECT_101 border type, performs wrong output.
As you see in attached image, left and right pixels are reflected correctly while gray bar will be padded at top and bottom
here is the code
cv::Mat frame = cv::imread("Lena.bmp");
cv::Mat tmp;...
2009-11-16 13:25:32 UTC by pklab
-
No documentation/examples for Spin Images.
2009-11-16 09:22:51 UTC by dee0815
-
MSVC Express doesnt bundle omp.h, but does support the /openmp switch! So your cmake script should check for its presence or have this as user configurable options?
Lines in the CMakeLists.txt
if(MSVC)
set(DEFAULT_ENABLE_OPENMP OFF) # Actually only Pro has omp.h set(DEFAULT_ENABLE_OPENMP ON)
else()
set(DEFAULT_ENABLE_OPENMP OFF)
endif()
2009-11-16 07:37:45 UTC by nobody
-
This bug was supposedly fixed half a year ago. However, not quite, apparently. It is related to latest releases of ffmpeg where the img_convert function
has been deprecated. This is the link to the pertinent bug and discussion:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=487638
I'm running openSUSE 11.1 64 bit. I just got the latest ffmpeg with its all latest dependency packages; all...
2009-11-16 04:55:19 UTC by nobody
-
schouart committed revision 2281 to the Open Computer Vision Library SVN repository, changing 1 files.
2009-11-16 00:40:34 UTC by schouart
-
schouart committed revision 2280 to the Open Computer Vision Library SVN repository, changing 1 files.
2009-11-15 23:00:35 UTC by schouart