catree
|
7469981d1a
|
Add Java and Python code for Image Segmentation with Distance Transform and Watershed Algorithm tutorial. Use more Pythonic code.
|
6 years ago |
catree
|
4c1c3147d9
|
Add Java and Python code for the following imgproc tutorials: Affine Transformations, Histogram Equalization, Histogram Calculation, Histogram Comparison, Back Projection.
|
7 years ago |
catree
|
9f6108ae7a
|
Add Java and Python code for the following imgproc tutorials: Canny, Remap, threshold and threshold inRange. Use HSV colorspace instead of RGB for inRange threshold tutorial.
|
7 years ago |
Alexander Alekhin
|
7f9253ea0a
|
samples: avoid using of legacy C-like API
- CV_RGB() macro is moved into opencv2/imgproc.hpp from imgproc_c.h
- samples/cpp/filestorage_base64.cpp is dropped
|
7 years ago |
Maksim Shabunin
|
633b0e56a5
|
Fixed compilation warnings in samples:
- use per-module includes instead of "opencv.hpp"
- unused function warnings
- undefined macro warning
|
7 years ago |
luz.paz
|
dbb57cd0ae
|
Misc. ./samples typos
Found via `codespell -q 3 --skip="./3rdparty" -I ../opencv-whitelist.txt`
|
7 years ago |
Suleyman TURKMEN
|
dcd4f8f5db
|
Update documentation
|
7 years ago |
Suleyman TURKMEN
|
1654dfe3a9
|
Update samples (#10333)
* Update samples
* Update calib3d.hpp
* Update calib3d.hpp
* Update calib3d.hpp
* Update calib3d.hpp
|
7 years ago |
tribta
|
9a2317e063
|
Tutorial Hough Lines
|
7 years ago |
tribta
|
d99ced6ec8
|
Tutorial Hough Circles
|
7 years ago |
tribta
|
9ff33dacfc
|
Tutorial Make Border
|
7 years ago |
tribta
|
a6f5e1f0ca
|
Tutorial Filter2D
|
7 years ago |
tribta
|
f7d85bfed8
|
Tutorial Sobel Derivatives
|
7 years ago |
tribta
|
3250f11f0c
|
Tutorial Laplace Operator
|
7 years ago |
Suleyman TURKMEN
|
d547c6b1a2
|
documentation improvement
|
7 years ago |
Suleyman TURKMEN
|
89480801b8
|
some improvements on tutorials
|
7 years ago |
StevenPuttemans
|
6d34d6b47e
|
update samples: waitKey() usage
Original commit is a5f19f7dd6
|
8 years ago |
Suleyman TURKMEN
|
bb6f65c199
|
Update documentation ( tutorials )
|
8 years ago |
Suleyman TURKMEN
|
11ca1c95f8
|
update cpp samples and tutorials
|
9 years ago |
tt
|
4ea2eceb70
|
Image Segmentation .cpp tutorial
Distance Transform tutorial fixes
Distance Transform fixes v.2
Distance Transform fixes v.3
Distance Transform fixes v.4
|
10 years ago |
Adil Ibragimov
|
8a4a1bb018
|
Several type of formal refactoring:
1. someMatrix.data -> someMatrix.prt()
2. someMatrix.data + someMatrix.step * lineIndex -> someMatrix.ptr( lineIndex )
3. (SomeType*) someMatrix.data -> someMatrix.ptr<SomeType>()
4. someMatrix.data -> !someMatrix.empty() ( or !someMatrix.data -> someMatrix.empty() ) in logical expressions
|
10 years ago |
vbystricky
|
4286f60387
|
Extract imgcodecs module from highgui
|
11 years ago |
Adrien BAK
|
38904c9a11
|
fix exception being thrown when no arguments are passed
|
11 years ago |
Adrien BAK
|
094d7c4926
|
build fix
|
11 years ago |
Adrien BAK
|
dda3b534ad
|
fix indent
|
11 years ago |
Adrien BAK
|
1c025be068
|
fix typos
|
11 years ago |
Adrien BAK
|
514f1fae95
|
improved error handling
|
11 years ago |
Adrien BAK
|
8a2de2ecca
|
modified HoughCircleDemo to introduce variable params via trackbars
Conflicts:
samples/cpp/tutorial_code/ImgTrans/HoughCircle_Demo.cpp
|
11 years ago |
StevenPuttemans
|
2b106db02f
|
Applied all fixes related to translating C to C++ code
Also fixed some typos and code alignment
Also adapted tutorial CPP samples
Fixed some identation problems
|
11 years ago |
Roman Donchenko
|
e9a28f66ee
|
Normalized file endings.
|
11 years ago |
Bahram Dahi
|
230bc03d97
|
Moved Scalar variable 'value' to int main() to work around a GCC -Wshadow warning in operations.hpp
|
11 years ago |
Andrey Kamaev
|
0738ea7d0f
|
Make highgui.hpp independent from C API
|
12 years ago |
Andrey Kamaev
|
288a0634c2
|
Make imgproc.hpp independent from C API
|
12 years ago |
Andrey Kamaev
|
2a6fb2867e
|
Remove all using directives for STL namespace and members
Made all STL usages explicit to be able automatically find all usages of
particular class or function.
|
12 years ago |
Andrey Kamaev
|
b131dfeecd
|
Build tutorial codes together with other samples
These codes should be included into regular builds.
|
12 years ago |
OpenCV Buildbot
|
81f826db2b
|
Normalize line endings and whitespace
|
12 years ago |
OpenCV Buildbot
|
04384a71e4
|
Normalize line endings and whitespace
|
12 years ago |
Ana Huaman
|
0a14f76731
|
Added 02 cpp sample files for tutorials: remap and Geometric Transformations (warpAffine and Rotation2D)
|
14 years ago |
Ana Huaman
|
8f01f2cc9f
|
Added 02 tutorials for Hough Lines and Circle detection in tutorial_code -- based on code existent
|
14 years ago |
Ana Huaman
|
832262e376
|
Added Laplace and Canny reST tutorials and corrected a small bug in Canny sample code
|
14 years ago |
Ana Huaman
|
3a0d3ebdde
|
Added Laplace, Canny and Sobel samples in tutorial cpp code
|
14 years ago |
Ana Huaman
|
65575cef7e
|
Added two new sample files for copyMakeBorder and filter2D
|
14 years ago |