Vadim Pisarevsky
7dd99258c7
Merge pull request #7584 from tomoaki0705:fixFp16BuildOldCompiler
9 years ago
k-shinotsuka
a7db950b66
add SSE code for Lab2RGB_f.
9 years ago
Alexander Alekhin
6c12533160
Merge pull request #7571 from panxiaochun:CvVideoCamera_stop
9 years ago
Alexander Alekhin
811eb76277
Merge pull request #7497 from abratchik:java.wrapper.fix.3.1
9 years ago
Tomoaki Teshima
6d460bb602
fix build error on old compiler
...
* vget_lane_** accepts constant value, not variable
9 years ago
Eric Sommerlade
752b10e410
fixed _MSC_VER check for at least vs2013 in dbt_face_detection sample
9 years ago
Eric Sommerlade
72e4e9d43d
fixed _MSC_VER check for vs2013 in dbt_face_detection sample
9 years ago
Alexander Alekhin
25f740ea5a
Merge pull request #7589 from alalek:fix_perf_stitching
9 years ago
Eric Sommerlade
62c28c5b92
Merge branch 'master' of https://github.com/es0m/opencv
9 years ago
Eric Sommerlade
049a894986
fixed detection_based_tracker on visual studio 2013 and later
...
modules/objectdetect/src/detection_based_tracker.cpp: made unique_lock<mutex> local to each function
samples/cpp/dbt_face_detection.cpp: fixed warnings on loop in Visual Studio
9 years ago
Alexander Alekhin
522cfa77b8
test: don't check magic values in stitching perf test
9 years ago
E Sommerlade
d00dcb1b3a
reversed mysterious mode change
9 years ago
abratchik
f978ee613e
fix for #7510 , #7511 and #7512
9 years ago
abratchik
78874c568e
fix java wrapper autotests
9 years ago
Alexander Alekhin
4c66772783
Merge pull request #7516 from sovrasov:find_contours_fix
9 years ago
Alexander Alekhin
51f2b27bcb
Merge pull request #7574 from Tytan:expcomp_before_seams
9 years ago
k-shinotsuka
c1c7c7f83e
add SSE code for Luv2RGB_f.
9 years ago
Vadim Pisarevsky
7fe0fb6be7
Merge pull request #7580 from seanlis:wrong_diag_comment
9 years ago
Vadim Pisarevsky
7b532cea89
Merge pull request #7540 from K-Shinotsuka:issue31
9 years ago
Vadim Pisarevsky
2b7866f21b
Merge pull request #7503 from pengli:box_filter_v2
9 years ago
Vadim Pisarevsky
b077d6a192
Merge pull request #7549 from StevenPuttemans:add_sample_content
9 years ago
Sean Li
6f3483ade3
Correct the comment of Mat::diag(const Mat& d).
9 years ago
k-shinotsuka
992795d47d
add SSE code for RGB2Luv_f.
9 years ago
Tomoaki Teshima
cba22349b7
add universal hardware support check function
...
* use hasSIMD128 rather than calling checkHardwareSupport
* add SIMD check in spartialgradient.cpp
* add SIMD check in stereosgbm.cpp
* add SIMD check in canny.cpp
9 years ago
Vadim Pisarevsky
ecb8fb964d
Merge pull request #7572 from tomoaki0705:featureUniversalStereoSgbm
9 years ago
Quentin
bbd4a0eb51
Compensate exposure before finding seams
9 years ago
Tomoaki Teshima
b823c8e95c
add universal intrinsic in StereoSGBM
...
* add 8 elements version of reduce operation
* add tests for new universal intrinsic
9 years ago
Alexander Alekhin
7f2ac764ae
Merge pull request #7561 from paroj:winvisible
9 years ago
Pavel Rojtberg
358ec04413
highgui: add property WND_PROP_VISIBLE
...
checks whether the window exists and is visible. On QT closing a window
merley hides it, so the common hack for checking whether a window exists
exists = cv2.getWindowProperty(.., 0) >= 0
does not work.
9 years ago
Vladislav Sovrasov
56c133d459
Disable redundant border initialization in findContours
9 years ago
panxiaochun
bec3479f9e
fix the problem:repeatedly stop cause app crash
9 years ago
panxiaochun
f888f47102
remove self. in release method
9 years ago
panxiaochun
03a9fd46c7
fix the problem: leak memory when repeatedly start and stop
9 years ago
Alexander Alekhin
bdfb4decb2
Merge pull request #7554 from lupustr3:pvlasov/morph_isolated
9 years ago
Alexander Alekhin
76f28fd48f
Merge pull request #7558 from alalek:cv_xadd
9 years ago
Alexander Alekhin
33a5778a0e
core: update CV_XADD
...
Allow to use custom implementations of CV_XADD (passed via -D of CXXFLAGS)
9 years ago
Alexander Alekhin
9b2b8404a0
Merge pull request #7553 from erichkeane:interlocked_add_fix
9 years ago
Pavel Vlasov
f07525031b
BORDER_ISOLATED support for Laplacian, boxFilter and morphology;
9 years ago
E Sommerlade
c93de78ff6
removed spaces at line endings, fixed warning
9 years ago
Erich Keane
ad6af6b9e4
Remove Intel Specific CV_XADD Definition
...
Intel supports __atomic_fetch_add, so it isn't necessary to use
a specific version otherwise.
9 years ago
E Sommerlade
41c47a84fc
restored Parameters() constructor to maintain ABI compatibility. Added CV_EXPORTS to nested class
9 years ago
E Sommerlade
d0474a9b81
fixed use of std::lock outside of ifdefs
9 years ago
Alexander Alekhin
8333ea41e2
Merge pull request #7551 from fegorsch:fix_yaml_header
9 years ago
StevenPuttemans
5728f796f6
updating python tutorials + providing necessary data
9 years ago
Li Peng
3607da9f6b
ocl kernel performance optimization for box filter
...
The optimization is for CV_8UC1 format and 3x3 box filter,
it is 15%~87% faster than current ocl kernel with below perf test
./modules/ts/misc/run.py -t imgproc --gtest_filter=OCL_BlurFixture*
Also add test cases for this ocl kernel.
Signed-off-by: Li Peng <peng.li@intel.com>
9 years ago
Erich Keane
689cf79625
Correct cast for _InterlockedExchangeAdd on ICC
...
A bug in ICC improperly identified the first parameter as "void*"
rather than the proper "volatile long*". This is scheduled to be
fixed in ICC in a future release.
This patch casts only to a "long*" to preserve backwards compatibility
with the ICC 16 and ICC 17 releases.
9 years ago
E Sommerlade
118c1b4ace
fixed detection_based_tracker on visual studio 2013 and later
9 years ago
Eric Sommerlade
5ebdf6cedd
Merge pull request #2 from opencv/master
...
update to master
9 years ago
fegorsch
ddf0554fff
Use colon in "%YAML:1.0" directive when persisting to YAML-files
...
In YAML 1.0 the colon is mandatory. See http://yaml.org/spec/1.0/#id2558635 .
This also allows prior releases to read YAML files created with the current version.
9 years ago
Alexander Alekhin
dc9602ee84
Merge pull request #7545 from sovrasov:flood_fill_fix_mask_value
9 years ago