Roman Donchenko
|
f76dd99299
|
Merge remote-tracking branch 'origin/2.4' into merge-2.4
Conflicts:
cmake/OpenCVModule.cmake
doc/tutorials/calib3d/camera_calibration/camera_calibration.rst
doc/tutorials/features2d/feature_detection/feature_detection.rst
doc/tutorials/features2d/feature_flann_matcher/feature_flann_matcher.rst
doc/tutorials/features2d/feature_homography/feature_homography.rst
modules/core/include/opencv2/core/operations.hpp
modules/core/src/arithm.cpp
modules/gpu/perf/perf_video.cpp
modules/imgproc/include/opencv2/imgproc/imgproc.hpp
modules/java/generator/gen_java.py
modules/java/generator/src/cpp/VideoCapture.cpp
modules/nonfree/src/opencl/surf.cl
modules/ocl/include/opencv2/ocl/ocl.hpp
modules/ocl/perf/perf_haar.cpp
modules/ocl/perf/perf_precomp.hpp
modules/ocl/src/color.cpp
modules/ocl/src/filtering.cpp
modules/ocl/test/test_color.cpp
modules/ocl/test/test_objdetect.cpp
modules/python/src2/cv2.cpp
samples/gpu/CMakeLists.txt
samples/gpu/super_resolution.cpp
|
2013-08-19 19:02:36 +04:00 |
|
Roman Donchenko
|
7992402ecf
|
Merge pull request #1149 from jet47:generalized-hough-refactoring
|
2013-08-14 13:26:24 +04:00 |
|
Roman Donchenko
|
31de2833b4
|
Replace "const InputArray" with "InputArray".
InputArray is a reference, and references are always constant anyway. Making
it const even causes a GCC warning.
|
2013-07-26 14:52:56 +04:00 |
|
Daniel Angelov
|
6fa4834f31
|
Update on the class. Edited tests and samples.
|
2013-07-22 00:55:29 +03:00 |
|
Daniel Angelov
|
965b3759b1
|
Update on the class to reflect the review. Split the class into virtual and implementation. change of name to LineSegmentDetector, using Input/Output-Arrays, general clean ups.
|
2013-07-21 01:31:51 +03:00 |
|
Vladislav Vinogradov
|
7b87d72d80
|
refactored generalized hough (both CPU and GPU):
removed set/get methods from Algorithm (implement owns)
removed GHT_* enumeration
|
2013-07-18 15:17:33 +04:00 |
|
Daniel Angelov
|
694d9ff2eb
|
LSD enum now anonymous.
|
2013-07-15 23:28:19 +03:00 |
|
Daniel Angelov
|
d35601209e
|
Added define guard for ln10. Fixed some warnings.
|
2013-07-14 14:29:56 +03:00 |
|
Daniel Angelov
|
22c8010b2d
|
Added needed header, changed macro name.
|
2013-07-14 12:56:22 +03:00 |
|
Daniel Angelov
|
6bd5e12be3
|
Added a sample to show usage of the class.
|
2013-07-13 04:11:27 +03:00 |
|
Daniel Angelov
|
e51e00ac5f
|
Added LSD accuracy tests.
|
2013-07-13 04:09:28 +03:00 |
|
Daniel Angelov
|
5350a2f1d9
|
Added Line Segmen Detector.
|
2013-07-13 00:21:02 +03:00 |
|
abidrahmank
|
37f4e400e4
|
Added cv2.boxPoints() functionality to Python bindings (Feature #2023)
http://www.code.opencv.org/issues/2023
eg:
In [3]: box = ((10,10),(5,5),0)
In [4]: cv2.boxPoints(box)
Out[4]:
array([[ 7.5, 12.5],
[ 7.5, 7.5],
[ 12.5, 7.5],
[ 12.5, 12.5]], dtype=float32)
|
2013-06-24 12:13:59 +05:30 |
|
Andrey Kamaev
|
c98c246fc2
|
Move border type constants and Moments class to core module
|
2013-04-10 19:14:24 +04:00 |
|
Andrey Kamaev
|
288a0634c2
|
Make imgproc.hpp independent from C API
|
2013-04-08 15:47:28 +04:00 |
|
Andrey Kamaev
|
2b1ef95415
|
Completely separate C and C++ API of OpenCV core
|
2013-04-01 15:24:34 +04:00 |
|
Andrey Kamaev
|
f77a375354
|
Merge branch '2.4'
|
2013-03-29 19:38:35 +04:00 |
|
Andrey Kamaev
|
a1c456b7c3
|
Extract common base header for C and C++ APIs
|
2013-03-15 10:38:38 +04:00 |
|
Andrey Kamaev
|
ad5cddc007
|
Main module headers are moved 1 level up
e.g. <opencv2/core/core.hpp> become <opencv2/core.hpp>
Also renamed <opencv2/core/opengl_interop.hpp> to <opencv2/core/opengl.hpp>
|
2013-03-13 17:26:56 +04:00 |
|