Alexander Alekhin
a21be6706d
android: force OpenCV library target to "android-21"
9 years ago
Alexander Alekhin
dbcc55a196
cleanup <build>/src|gen folders to remove stalled/unused Java files
9 years ago
Alexander Alekhin
441eeef319
Merge pull request #5470 from apavlenko:android_camera_gl_view
9 years ago
Alexander Alekhin
a8d0c18248
Merge pull request #5468 from AVshokurov:master
9 years ago
Anton V. Shokurov
bbe007159a
The latest version (5.1.1) of the gnu compiler returns just its major version ("5") when given the "-dumpversion" argument. Gnu compiler developers don't consider this to be an error. A workaround for this case has been made.
9 years ago
Andrey Pavlenko
24ca6aaada
fix build with CMake
...
now it builds by the command:
`cmake.exe -Wno-dev -GNinja -DCMAKE_MAKE_PROGRAM="path\to\ninja\ninja.exe" -DCMAKE_TOOLCHAIN_FILE=../opencv3/platforms/android/android.toolchain.cmake -DANDROID_ABI="armeabi-v7a with NEON" -DANDROID_SDK_TARGET=21 -DANDROID_NATIVE_API_LEVEL=14 -DCMAKE_BUILD_WITH_INSTALL_RPATH=ON -DBUILD_ANDROID_EXAMPLES=ON -DINSTALL_ANDROID_EXAMPLES=ON -DWITH_OPENCL=YES -DANDROID_OPENCL_SDK=path\to\OpenCL ../opencv`
9 years ago
Andrey Pavlenko
23fea91e84
minor fixes
9 years ago
Andrey Pavlenko
a041105491
refactoring Tutorial-4 using new OpenCV CameraGLSurfaceView
9 years ago
Alexander Alekhin
484c68cbb8
Merge pull request #5460 from sergiud:highgui-autosize-gtk3
9 years ago
Alexander Alekhin
56e8827ce0
Merge pull request #5456 from sergiud:ffmpeg-capture-varying-frame-size
9 years ago
Alexander Alekhin
ea535abd50
Merge pull request #5462 from alalek:fix_x86_detection
9 years ago
Andrey Pavlenko
15db8243ef
refactored; added Camera2, notify callbacks, front/back maxCamera sizes; disable new stuff if target API < 21
9 years ago
Alexander Alekhin
fe00689757
workaround for 32-bit OS on 64-bit x86 CPU
9 years ago
Alexander Alekhin
706b8a6266
Merge pull request #5459 from aman11dhanpat:master
9 years ago
Alexander Alekhin
559b538be8
Merge pull request #5458 from berak:fix_putText
9 years ago
berak
f2decec3e8
fix zero length std::string in putText()
9 years ago
Sergiu Dotenco
514b202d7b
highgui: CV_WINDOW_AUTOSIZE does not resize with GTK3
9 years ago
Aman Verma
dff7037156
Adding fix for issue 5451 "putText fails with empty std::string"
9 years ago
Sergiu Dotenco
9da4fe4b02
videoio: fixed segmentation fault at frame size change
9 years ago
Alexander Alekhin
6025738b8b
Merge pull request #5454 from alalek:fix_ffmpeg_priv_data
9 years ago
Alexander Alekhin
7a4b2e18a7
Merge pull request #5441 from alalek:fix_ffmpeg_frame_creation
9 years ago
Alexander Alekhin
4760d32937
ffmpeg: fix invalid NULL pointer access
...
Catched on Ubuntu 12.04 with FFMPEG:
codec: YES (ver 53.35.0)
format: YES (ver 53.21.1)
util: YES (ver 51.22.3)
swscale: YES (ver 2.1.0)
resample: NO
gentoo-style: YES
9 years ago
Alexander Alekhin
33f5ac5c15
Merge pull request #5429 from PhilLab:patch-6
9 years ago
Alexander Alekhin
59a41c1c51
Merge pull request #5453 from paroj:capgstleak
9 years ago
Pavel Rojtberg
345cd1242f
do not leak GstMapInfo
...
it is new'ed but never deleted. However it does not need to be global or
heap allocated in the first place.
9 years ago
Alexander Alekhin
50a0a167f0
fix ffmpeg frame creation ( fix #5439 )
9 years ago
Alexander Alekhin
e2e25e9af3
Merge pull request #5399 from alalek:fix_5264
9 years ago
Alexander Alekhin
76afd9a1b5
Merge pull request #5436 from jet47:fix-cuda-normalize
9 years ago
Alexander Alekhin
b37387ef90
Merge pull request #5425 from lupustr3:pvlasov/ipp_initialization_changes
9 years ago
Vladislav Vinogradov
1bf811c3f1
fix cuda::normalize (dtype < 0) case
9 years ago
Pavel Vlasov
6a0d3b06f2
IPPInitSingelton initialization guards;
9 years ago
Vadim Pisarevsky
d69b7c332a
Merge pull request #5385 from alalek:fix_android_camera_datarace
9 years ago
Philipp Hasper
05846438e3
Typo in CameraBridgeViewBase.java
...
Corrected typo and unused imports
9 years ago
Vadim Pisarevsky
af5e631a7a
Merge pull request #5402 from sturkmen72:patch-10
9 years ago
Vadim Pisarevsky
c29b09d093
Merge pull request #5408 from alalek:move_ippicv_binaries
9 years ago
Vadim Pisarevsky
c2caea4818
Merge pull request #5409 from kauevestena:patch-1
9 years ago
Pavel Vlasov
e837d69f8f
IPPInitSingelton was added to contain IPP related global variables;
...
OPENCV_IPP env var now allows to select IPP architecture level for IPP9+;
IPP initialization logic was unified across modules;
9 years ago
Alexander Alekhin
34e4e66bf1
Merge pull request #5419 from lupustr3:pvlasov/ipp9_integration
9 years ago
Alexander Alekhin
9b6424e0c6
Merge pull request #5415 from lupustr3:pvlasov/ipp_version_change
9 years ago
Pavel Vlasov
62854dcc0d
Enables support of IPP 9.0.0;
...
HAVE_IPP_ICV_ONLY will be undefined if OpenCV was linked against ICV packet from IPP9 or greater. ICV9+ packets will be aligned with IPP in OpenCV APIs
This will ease code management between IPP and ICV
9 years ago
Pavel Vlasov
75c7917643
IPP_VERSION_X100 was changed to:
...
IPP_VERSION_MAJOR * 100 + IPP_VERSION_MINOR*10 + IPP_VERSION_UPDATE
to manage changes between updates more easily.
IPP_DISABLE_BLOCK was added to ease tracking of disabled IPP functions;
9 years ago
Alexander Alekhin
ddf82d0b15
Merge pull request #5405 from lupustr3:pvlasov/ipp_functions_refactoring
9 years ago
Alexander Alekhin
f4c9bc8bc4
Merge pull request #5406 from cbalint13:master
9 years ago
Suleyman TURKMEN
7c226ed7a2
adding new flags to imread to load image reduced
9 years ago
Kauê de Moraes Vestena
1bd18836d7
little fixes and correction of a conceptual error
...
Previously, there's no way to the user see the found corners, i've changed that.
In a cout, are write that: "average reprojection err = "
But it isn't a "reprojection error" at all, it is a mean of each EPIPOLAR error, wich occur when the product x' * F * x is not equal to zero.
(x and x' are the same points in the right and left scene)
(the RMS that explain the average absolute reprojection error is given by the return of the stereoCalibrate() function)
At least, i think it's interesting to initialize the camera matrices before.
Thank you all for this amazing code. Apologize my weak english.
9 years ago
Balint Cristian
fdbed4a473
Speedup AGAST nonmax-suppression.
9 years ago
Pavel Vlasov
14b006e808
IPP_VERSION_X100 was changed to:
...
IPP_VERSION_MAJOR * 100 + IPP_VERSION_MINOR*10 + IPP_VERSION_UPDATE
to manage changes between updates more easily.
IPP_DISABLE_BLOCK was added to ease tracking of disabled IPP functions;
9 years ago
Pavel Vlasov
2177c7c5a8
Some IPP functions were encapsulated;
...
Minor changes to IPP implementations;
9 years ago
Alexander Alekhin
750162acb3
move IPPICV binaries to GitHub opencv_3rdparty repository
9 years ago
Alexander Alekhin
3a3f4038bf
Merge pull request #5391 from paroj:parser_nonempty
9 years ago