Peter Braden
|
5a2317d8fa
|
Merge pull request #625 from aylusltd/patch-2
Remove superfluous check
|
2019-03-20 10:47:48 +01:00 |
|
Peter Braden
|
aaece6921d
|
Fix install script
|
2019-03-20 09:36:36 +00:00 |
|
Peter Braden
|
cfc96ba0af
|
Merge pull request #624 from ATLCTO/master
Add Div/Pow matrix functions.
|
2018-04-16 09:02:26 +02:00 |
|
Peter Braden
|
2e7148127a
|
Merge pull request #626 from markdicksonjr/master
Additional (optional) parameters added to gaussian blur
|
2018-04-16 09:01:38 +02:00 |
|
Mark Dickson Jr
|
302bbea2af
|
Additional (optional) parameters added to gaussian blur
|
2018-04-14 21:32:52 -04:00 |
|
Patrick Childers
|
a9f799004d
|
Add CV_BGRA2BGR format conversion.
|
2018-04-13 12:42:47 -04:00 |
|
Jason Nichols
|
927e879e3c
|
Remove superfluous check
CV_Minor_Version <= 4 is always < 10... superfluous check.
|
2018-04-13 11:21:32 -04:00 |
|
Patrick Childers
|
b5a078a631
|
Add Div/Pow matrix functions.
|
2018-04-13 09:11:49 -04:00 |
|
David Starke
|
e1c0d8ef4e
|
Correctly track memory for image pyramid functions
|
2018-01-17 14:55:57 -08:00 |
|
David Starke
|
9646626e3d
|
Consolidate external memory adjustment in Matrix
|
2018-01-17 14:25:43 -08:00 |
|
David Starke
|
45c8894167
|
Additional memory tracking for matrices
|
2018-01-11 15:47:30 -08:00 |
|
David Starke
|
2cd3bd4ff4
|
slightly more clear memory handling for async tasks
|
2018-01-05 11:49:36 -08:00 |
|
David Starke
|
f8d7dc2f06
|
More accurate tracking of external memory using OpenCV’s reference counts
|
2018-01-04 20:16:36 -08:00 |
|
David Starke
|
dff99718b9
|
missed adjusting the external memory on resize
|
2018-01-04 12:04:26 -08:00 |
|
David Starke
|
dbf2df0ef8
|
Track external memory usage for matrices
|
2017-12-22 15:29:49 -08:00 |
|
Eric Lundberg
|
a8790273a9
|
Add support for scale param in mul, several additional params in goodFeaturesToTrack. Only convert to grayscale in goodFeaturesToTrack if not already in grayscale
|
2017-11-28 11:39:44 -08:00 |
|
btsimonh
|
a1d7a22ccd
|
Merge pull request #590 from btsimonh/logopencvversion
Log OpenCV version in built in init.cc
|
2017-11-14 13:42:13 +00:00 |
|
Simon Hailes
|
e943fe727b
|
Log OpenCV version in built in init.cc
|
2017-11-14 13:21:13 +00:00 |
|
Simon Thiel
|
6597046897
|
FIX OpenCV 3.3: support compilation with OpenCV 3.3
|
2017-11-13 14:51:56 +01:00 |
|
Simon Thiel
|
ece9efc8c9
|
FEATURE HighGUI.cc: add resize window function
|
2017-11-13 14:51:56 +01:00 |
|
Peter Braden
|
fa663d449b
|
Merge pull request #588 from btsimonh/refcount
Refcount
|
2017-11-13 09:58:02 +01:00 |
|
Simon Hailes
|
f4d0459fa7
|
kill ref to addref in Matrix.h
|
2017-11-13 08:40:44 +00:00 |
|
Simon Hailes
|
bc8095534b
|
comment out Addref - too dangerous to leave in. Modify test example.
|
2017-11-12 17:48:36 +00:00 |
|
Simon Hailes
|
9316a01f03
|
fix typo
|
2017-11-12 16:48:08 +00:00 |
|
Simon Hailes
|
96d0eb8824
|
Matrix: add mtx.addref() and mtx.getrefCount()
|
2017-11-12 16:03:17 +00:00 |
|
Simon Hailes
|
b1edee0527
|
VideoWriter: make safe to mat.release() before async is complete
|
2017-11-12 15:59:45 +00:00 |
|
Simon Hailes
|
642bf94a3d
|
Matrix: resizeasync - make safe to mat.release() before async is complete
|
2017-11-12 15:58:17 +00:00 |
|
Simon Hailes
|
31c9349885
|
Matrix: asyncsave: make safe to mat.release of input mat before async is complete.
|
2017-11-12 15:57:29 +00:00 |
|
Simon Hailes
|
81ac6941b9
|
AsyncToBuffer - make it safe to mat.release() the input image before the async func has completed.
|
2017-11-12 15:56:33 +00:00 |
|
Simon Hailes
|
e0087841bd
|
Backgroundsubtractor: protect async against release of input mat
|
2017-11-12 15:45:03 +00:00 |
|
Simon Hailes
|
cdb8d7ff9b
|
move backgroundsubtrator::init out if HAVE_OPENCV_VIDEO and into new HAVE_BACKGROUNDSUBTRACTOR
|
2017-11-11 14:00:19 +00:00 |
|
Simon Hailes
|
507bb2482b
|
Fix Synchronous Apply()
|
2017-11-11 12:14:55 +00:00 |
|
Simon Hailes
|
cbb7f31b48
|
add back in missing #ifdef
|
2017-11-11 11:29:57 +00:00 |
|
Simon Hailes
|
841fe088f6
|
Background subtractor: Add async, add CreateMOG2, CreateGMG, Add some MOG parameters. now OpenCV 2.4 and 3.x
|
2017-11-11 11:03:14 +00:00 |
|
btsimonh
|
729686f6dc
|
Merge pull request #584 from btsimonh/readImageMem
opencv:readimage Async - fix suspected memory leak
|
2017-11-10 16:17:03 +00:00 |
|
Simon Hailes
|
6d09f70367
|
opencv:readimage Async - change newed mat to local class to try to prevent mem leak; also try-catch to signal failure through callback
|
2017-11-10 14:07:20 +00:00 |
|
Simon Hailes
|
6393a7f44e
|
avoid warning about initilisation order
|
2017-11-10 10:32:51 +00:00 |
|
Simon Hailes
|
0b6b1f42cc
|
fix stupid typo
|
2017-11-10 10:28:56 +00:00 |
|
Simon Hailes
|
f2c05255a0
|
resize: delete the dest we created on error, and if still present on destructor
|
2017-11-10 10:25:27 +00:00 |
|
Simon Hailes
|
ab0bd505d2
|
resize(async): seems we can get an assert in Unwrap if image has 0,0, size, so catch and report as a callback error.
|
2017-11-10 09:49:12 +00:00 |
|
Peter Braden
|
fdd0c97a3c
|
Merge pull request #578 from btsimonh/warninglines
fix vs compile error due to warning lines
|
2017-11-07 13:51:41 +01:00 |
|
Simon Hailes
|
9271d2c606
|
Histogram - fix VS compilation by setting constant size arrays.
|
2017-11-07 09:42:17 +00:00 |
|
Simon Hailes
|
91796df65e
|
fix vs compile error due to warning lines
|
2017-11-07 09:28:21 +00:00 |
|
Peter Braden
|
db70b8ce6b
|
Merge pull request #575 from btsimonh/imreadconstants
add constants for use with cv::imread and cv::imdecode
|
2017-11-06 15:14:35 +01:00 |
|
Simon Hailes
|
71a6d451fe
|
make CV_LOAD_IMAGE_IGNORE_ORIENTATION only available if CV >= 3.2.0
|
2017-11-06 09:41:14 +00:00 |
|
Simon Hailes
|
bf6aa03f5d
|
add constants CV_LOAD_IMAGE_UNCHANGED, CV_LOAD_IMAGE_GRAYSCALE, CV_LOAD_IMAGE_COLOR, CV_LOAD_IMAGE_ANYDEPTH, CV_LOAD_IMAGE_ANYCOLOR, CV_LOAD_IMAGE_IGNORE_ORIENTATION
For use with imread/imdecode via readImage
|
2017-11-04 16:00:44 +00:00 |
|
Simon Hailes
|
bc62d03f84
|
Add cv.readImageAsync. same interface as readImage, only the callbacks are really Asynchronous, except for matrix creation.
Introduces two Asyn Wrokers, one for readin images from disk, and one for decoding images from buffers.
|
2017-11-04 14:53:44 +00:00 |
|
Simon Hailes
|
2dd3745c81
|
cv.readImage: add flags arguments plus update example
|
2017-11-04 14:50:01 +00:00 |
|
Simon Hailes
|
5d05f22d55
|
cv.readImage: Add verison which returns mat (i.e. no callback fn). Fix create with width & height. Add readimage.js to examples folder.
|
2017-11-04 13:20:39 +00:00 |
|
Peter Braden
|
d760e792a4
|
Merge pull request #565 from btsimonh/btsimonh-async-resize
Add Async to Matix.resize
|
2017-11-03 10:41:29 +01:00 |
|