Maria Dimashova
cbdc91889a
fixed setProperty
14 years ago
Vadim Pisarevsky
73f589e8a5
further docs cleanup
14 years ago
Vadim Pisarevsky
5c3447c125
added pictures for OpenCV 2.x reference manual; fixed some build problems and done some more cleanup work
14 years ago
Vadim Pisarevsky
f025e4739a
some more doc cleanup
14 years ago
Vadim Pisarevsky
4bb893aa9f
the first round of cleaning up the RST docs
14 years ago
Vadim Pisarevsky
24ccbccf63
cleaned RST formatting a bit
14 years ago
Vadim Pisarevsky
11c2f5d810
OpenCV reference manual (C++ part only for now) is now produced directly from RST, not from TeX.
14 years ago
Vadim Pisarevsky
371aa08006
OpenCV reference manual (C++ part only for now) is now produced directly from RST, not from TeX.
14 years ago
Ethan Rublee
58cb6c268e
adding cap_images.cpp to android build, may fix link error, but not really address issue of reading video files on android
14 years ago
Maria Dimashova
63c9b4cec1
fixed mirror property of kinect
14 years ago
Vadim Pisarevsky
061b49e0b2
reworked nearly all of the OpenCV tests (except for opencv_gpu tests) - they now use the Google Test engine.
14 years ago
Maria Dimashova
ad896ae640
refactored OpenNI integration
14 years ago
Maria Dimashova
ed77955635
moved an include dirs setting to the root cmake file
14 years ago
Maria Dimashova
152fefe854
minor changes
14 years ago
Maria Dimashova
d70d2edc9f
changed returned value of unsupported property
14 years ago
Maria Dimashova
508aaa41f8
added ability to get and set some Kinect params
14 years ago
Maria Dimashova
68ed806be0
replaced own point cloud computing by OpenNI ConvertProjectiveToRealWorld()
14 years ago
Maria Dimashova
3a04d08bf7
added Kinect support (initial version without settings configuration yet) and sample on usage
14 years ago
Vladimir Dudnik
6309b2d08d
added OpenCVFindIPP.cmake script, which will look for IPP installation at CMake configuration time. First, IPPROOT environment variable will be tested, if not found script will look at default install places.
...
The script should support IPP from 5.3 up to 7.x versions (although tested on Windows for IPP 6.1 and IPP 7.0 versions only)
Preliminary optimization of HOG with IPP added too. Not yet quite efficient, code for cpu branch should be redesigned in order to have better performance.
14 years ago
Vadim Pisarevsky
e90f197beb
merged fix for x64 MSVC compile errors in highgui into trunk
14 years ago
Vadim Pisarevsky
8b48eebeee
enable #include "cvconfig.h" in highgui on Windows. That should fix camera capture.
14 years ago
Vadim Pisarevsky
4339f69da4
fix opencv-highgui build with old versions of libpng (< 1.4.x)
14 years ago
Vadim Pisarevsky
3beac049d5
replicated the fix for Ptr<CvCapture> bug
14 years ago
Vadim Pisarevsky
0de9c9fd3c
opencv_zlib renamed back to zlib; make static libs work on Windows
14 years ago
Vadim Pisarevsky
8b4cb1d99c
make OpenCVConfig.cmake usable in the case of static libs
14 years ago
Vadim Pisarevsky
3e7fbd21e0
fixed compile errors in cap_qt.cpp (ticket #391 )
14 years ago
Vadim Pisarevsky
11ed55ddb4
fixed mouse painting in Qt bindings (to make watershed & inpaint demos work); increased the font in the detailed pixel image display.
14 years ago
Vadim Pisarevsky
1286c1db45
fixed multiple warnings from VS2010.
14 years ago
Vadim Pisarevsky
334ac49d34
added user mode selection (thanks to tito for the patch, ticket #563 )
14 years ago
Vadim Pisarevsky
beee6f2f70
pass the correct rgb->gray coefficients to PNG decoder, to match cvtColor's.
14 years ago
Vadim Pisarevsky
636cb15f3d
add protection against EAGAIN error in the streams (thanks to vrabaud for the patch - ticket #553 )
14 years ago
Vadim Pisarevsky
3163cfb845
added 16-bit tiff support, enabled LZW codec in tiff (tickets #588 , #590 )
14 years ago
Vadim Pisarevsky
feb0de80e1
avoid use of writable global variables in V4L capturing module (thanks to fjmadrid for the patch! - see the ticket #384 )
14 years ago
Ethan Rublee
458931613c
Making highgui build for android
14 years ago
Vadim Pisarevsky
5b6a755719
almost finished Python wrappers
14 years ago
Ethan Rublee
9ee954a0c6
Made calibration a bit faster in the absense of a checkboard and trying to fix
...
a crash with the libv4l capture code
14 years ago
Vadim Pisarevsky
83f6085773
added more helper macros to the function declarations, to assist the Python wrapper generator. Fixed memleak in Mat::operator()(Range,Range) and the related functions (Mat::row, Mat::col etc.)
14 years ago
Stefano Fabri
ed0ce7ed50
Fixed missing semicolon
14 years ago
Vadim Pisarevsky
ebb9c61546
fixed bug with Mat::dataend initialization. Now morph-ex test passes; Also fixed CV_Assert() implementation
14 years ago
Vadim Pisarevsky
1b1eab8e67
added helper macros to the function declarations
14 years ago
Ethan Rublee
2f3f677ffe
woops, broke cmake for a bit...
14 years ago
Ethan Rublee
8ee50c422b
adding some small changes to support android build,
...
mainly cmake stuff, but in persistance the wcstombs
is not supported on android, and in
sift.cpp there was and ifdef that affected arm and this
causes undefined symbols on android.
14 years ago
Yannick Verdie
54ba887432
Qt fix: cvAddText ticket #561
14 years ago
Yannick Verdie
24427d593f
Qt add byte per line information to fix a bug
14 years ago
Yannick Verdie
411e16074e
Qt Ticket #520
14 years ago
Yannick Verdie
69e6294854
Qt ticket #537
...
Forgot to update so code after previous fix
14 years ago
Yannick Verdie
3e8a8f7942
Qt weird bug with QLabel (is it really fixed ?)
14 years ago
Yannick Verdie
45daaa6e11
Qt bug with buttons
14 years ago
Yannick Verdie
48090fd37e
Qt bug fixed #534
14 years ago
Yannick Verdie
3746c48451
Bug in calibration.cpp sample
...
This was crashing my code:
for( size_t i = 1; i < imagePoints.size(); i++ )
objectPoints.push_back(objectPoints[0]);
Changed by:
objectPoints.resize(imagePoints.size(),objectPoints[0]);
Plus clean up on Qt code
14 years ago