Alexander Alekhin
755e0143fb
Merge pull request #20815 from alalek:fix_20649_revert_19859
...
features2d: repair SimpleBlobDetector
* features2d: revert code change by PR #19859
Reverted commit 76860933f0
* features2d: check SimpleBlobDetector parameters consistency
4 years ago
Danny
76860933f0
Merge pull request #19859 from danielenricocahall:fix-blob-detector-single-thresh
...
Fix Single ThresholdBug in Simple Blob Detector
* address bug with using min dist between blobs in blob detector
cast type in comparison and remove docs
address bug with using min dist between blobs in blob detector
use scalar instead of int
address bug with using min dist between blobs in blob detector
* fix namespace and formatting
4 years ago
jsxyhelu
476094ad5a
Use“ moms” replace "contourArea"
...
double area = moms.m00;
is same as
double area = contourArea(contours[contourIdx]);
Not to mention
"moms" already calculated here,"contourArea" should not apply
5 years ago
Rafa Gomez-Jordana
9a24886282
Fix blob detector insertion sort
6 years ago
Alexander Alekhin
78384d8923
build: avoid highgui dependency
6 years ago
Suleyman TURKMEN
794c14b29a
code clean up
6 years ago
Hamdi Sahloul
5d54def264
Add semicolons after `CV_INSTRUMENT` macros
7 years ago
Hamdi Sahloul
a39e0daacf
Utilize CV_UNUSED macro
7 years ago
Maksim Shabunin
1da46fe6fb
Fixed issues found by static analysis (mostly DBZ)
7 years ago
Alexander Alekhin
0854dc3320
features2d: apply CV_OVERRIDE/CV_FINAL
7 years ago
mworchel
aab390c51d
Add mask support to SimpleBlobDetector
7 years ago
Hamdi Sahloul
2d2499f610
BLOB - Support RGBA
7 years ago
Patel, Nilaykumar K
6857870412
Overloading getDefaultName method for Feature2D and its child classes
...
Signed-off-by: Vipin Anand <anand.vipin@gmail.com>
Signed-off-by: Prashanth Voora <prashanthx85@gmail.com>
Signed-off-by: Patel, Nilaykumar K <nilay.nilpat@gmail.com>
8 years ago
Pavel Vlasov
30a6cee2fe
Instrumentation for OpenCV API regions and IPP functions;
9 years ago
mvukad
695e33b25b
Fix missing format when writing Algorithm-based objects
...
Added a writeFormat() method to Algorithm which must be called by the
write() method of derived classes.
9 years ago
laurentBerger
3a53e726dd
example BLOB_MSER and fixed bug in blobdetector
10 years ago
Vadim Pisarevsky
09df1a286b
OpenCV with the refactored features2d compiles! contrib is broken for now; the tests are not tried yet
11 years ago
Vadim Pisarevsky
2e915026a0
yet another attempt to refactor features2d; the first commit, features2d does not even compile
11 years ago
Vadim Pisarevsky
5e667ee53a
OpenCV with the refactored features2d compiles! contrib is broken for now; the tests are not tried yet
11 years ago
Vadim Pisarevsky
1796a26fc7
yet another attempt to refactor features2d; the first commit, features2d does not even compile
11 years ago
StevenPuttemans
d4ec359f11
Fixing errors
11 years ago
StevenPuttemans
03662c0589
fix blobdetector
11 years ago
Rohit Girdhar
a4b5641836
bugfix: blobdetector was putting incorrect diameter value in keypoints
11 years ago
Konstantin Matskevich
f44334285b
features2d
11 years ago
Ilya Lavrenov
e559256719
added cv::GFTTDetector
11 years ago
Brian McKinnon
36745a80c3
Added #include <limits> to files that were missing it.
12 years ago
Andrey Kamaev
c98c246fc2
Move border type constants and Moments class to core module
12 years ago
gpsinghsandhu
77e51ff9c4
contours with zero area rejected
...
reject contours with zero area by using the "continue" statement to be in sync with the condition checking style used in the whole file
12 years ago
gpsinghsandhu
0d16a9befb
In response to Bug #2927
...
change to reject contours with moms.m00 = 0.0
12 years ago
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>
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
OpenCV Buildbot
81f826db2b
Normalize line endings and whitespace
13 years ago
OpenCV Buildbot
04384a71e4
Normalize line endings and whitespace
13 years ago
Andrey Kamaev
e4307d05f3
Made dependency of features2d and calib3d from highgui optional
13 years ago
Maria Dimashova
81cb7b2c5e
added read/write methods for SimpleBlobDetector and DenseFeatureDetector; added their creation to FeatureDetector::create method ( #1290 )
14 years ago
Anatoly Baksheev
8f4c7db3f6
~40 warnings under VS2008
...
HAVE_CONFIG_H -> HAVE_CVCONFIG_H
14 years ago
Ilya Lysenkov
2beae4d30b
Minor change of SimpleBlobDetector
14 years ago
Ilya Lysenkov
f60d7fdfef
Simplified SimpleBlobDetector to make it simple)
14 years ago
Ilya Lysenkov
5a3e7d041f
Added drawing of a new image for debugging of the SimpleBlobDetector class.
14 years ago
Vadim Pisarevsky
23768b1826
replaced #include <some_opencv_hdr> with #include "some_opencv_hdr" (ticket #719 )
14 years ago
Anatoly Baksheev
1c18e5fef9
fixed ~300 warnings under windows (had to hack gtest a bit)
14 years ago
Vadim Pisarevsky
d9ab1d2b92
fixed build on Windows with MSVC2010
14 years ago
Ilya Lysenkov
f8e9f65ea8
Added detection of asymmetric circles' pattern
14 years ago
Ilya Lysenkov
2d5a984c28
Moved BlobDetector to features2d
15 years ago
Ilya Lysenkov
0bc1349335
Fixed some warnings under Windows
15 years ago
Ilya Lysenkov
351f6eeb97
Fixed compile errors under Windows
15 years ago
Ilya Lysenkov
c4a8ae5931
Used Poitn2f instead of KeyPoint
15 years ago
Ilya Lysenkov
964df356bf
Added detection of cirlces' grid pattern
15 years ago