Anton Potapov
3ffed0bf6e
GAPI - KW fixes
...
- remove unreachable code in GIsland::producer()
2020-04-02 12:05:34 +03:00
Maxim Pashchenkov
557ac3dbaf
Merge pull request #16805 from Volskig:mp/ocv-gapi-standalone-scalar
...
G-API: Unification of own:: Scalar with cv:: Scalar
* cvdefs.hpp
* Small changes
* Deowned Scalar. Does't work
* Something
* Removed to_ocv for Scalar
* Clear code
* Deleted whitespaces
* Added include<..own/scalar.hpp in cvdefs.hpp.
* Long string split on two now
* Comment about scalar
* Comment about crutch
* Removed second varible in scalar_wrapper
* Changed wrapper for scalar, alignment
* Alignment
* Whitespaces
* Removed scalar_wrapper
2020-04-01 18:40:38 +00:00
Alexander Alekhin
99502e99cc
gapi(simd): initialize accumulator values
2020-03-26 16:48:21 +00:00
Anatoliy Talamanov
c303aaa94d
Merge pull request #16841 from TolyaTalamanov:at/warp-perspective
...
G-API: Implement WarpPerspective
* Implement WarpPerspective kernel
* Fix comment to review
2020-03-25 11:23:32 +00:00
Anatoliy Talamanov
4d3d6230c5
Merge pull request #16803 from TolyaTalamanov:at/yuv-to-gray
...
* Implement NV12toGray
* Snapshot
* Implement NV12toGray as compound kernel
* Update gapi_imgproc_tests_inl.hpp
* Remove YUV2Gray from public API
2020-03-24 10:51:18 +00:00
Alexander Alekhin
978666c816
Merge pull request #16849 from anton-potapov:ap/variant__assignment_operator_compile_error
2020-03-23 22:04:48 +00:00
Dmitry Matveev
020be63df5
Try to enable G-API build on Android
2020-03-20 17:20:01 +03:00
Anton Potapov
31d624f9a8
G-API utils - fix compilation error in variant::operator=
2020-03-20 14:46:13 +03:00
Anatoliy Talamanov
8fe9674301
Merge pull request #16768 from TolyaTalamanov:at/add-warp-affine
...
G-API: Implement WarpAffine
* Add WarpAffine
* Ban BORDER_TRANSPARENT
* Fix doc
2020-03-19 12:12:09 +00:00
Anton Potapov
3af63fe052
GAPI - KW fixes
...
- avoid overflow in own::Mat::total() and according tests, part 2
2020-03-13 12:46:18 +03:00
Alexander Alekhin
a1230ad0a0
Merge pull request #16796 from anton-potapov:kw_fixes_own_mat_total_overflow
2020-03-12 13:05:52 +00:00
Anton Potapov
d3b68b059b
GAPI - KW fixes
...
- avoid overflow in own::Mat::total() and according tests
2020-03-12 13:29:54 +03:00
Anton Potapov
3ba6b41961
GAPI - KW fixes
...
- replaced bitwise &= on bools, with explicit && to make KW happy
2020-03-11 18:16:56 +03:00
Anton Potapov
72fedbe096
GAPI - KW fixes
...
- replace "unsafe" memcpy with "safe" :) std::copy_n to make KW happy
2020-03-11 11:23:15 +03:00
Maxim Pashchenkov
3befdb4ae8
Merge pull request #16604 from Volskig:mp/ocv-gapi-zero-height-mat
...
G-API: Zero-height mat is cause of crash
* Added check for zero-height Mat case
* Refactoring, added validate_input_arg func
* No bool function now
2020-03-10 14:44:16 +03:00
Alexander Alekhin
23bc89d6fc
Merge pull request #16577 from Volskig:mp/ocv-gapi-work
2020-03-05 10:58:51 +00:00
Maxim Pashchenkov
bce9837604
Added assert for create Mat with negative dims, added tets for this case
2020-03-05 11:52:10 +03:00
Maxim Pashchenkov
f3a50224f2
Rm imgproc from render.cpp
2020-03-05 11:41:36 +03:00
Anton Potapov
8ed89bae84
KW: G-API tests - fixes for uninitialized variables
2020-03-03 11:37:40 +03:00
Alexander Alekhin
db5f1c3554
Merge pull request #16688 from alalek:issue_16679
2020-02-27 20:55:49 +00:00
Alexander Alekhin
e93c51762b
gapi(test): fix check
2020-02-27 19:43:06 +00:00
Rajkiran Natarajan
b17e9c614b
Fix annoying compiler warning.
2020-02-26 22:59:02 -08:00
Alexander Alekhin
f2d3edec80
gapi(test): ban and get rid of countNonZero() checks
2020-02-26 14:19:19 +03:00
Dmitry Matveev
dae1fc8889
Merge pull request #16555 from dmatveev:dm/ocv_blog_sample
...
* G-API/Samples: Added a simple "privacy masking camera" sample
The main idea is to host this code for an opencv.org blog post only
* G-API/Samples: Modified privacy masking camera code to look better for the post
* G-API/Samples: fix Windows (MSVC) support in Privacy Masking Camera
* G-API/Samples: Addressed the majority of review comments in PMC
* G-API/Samples: Use TickMeter to measure time + more info in cmd options
* G-API/Samples: fix yet another Windows warning in PMC
* G-API/Samples: Fix wording in PMC cmd arg parameters
* Fix wording, again
* G-API/Samples: Fix PMC cmd-line arguments, again
2020-02-18 15:11:44 +03:00
Anatoliy Talamanov
a6ef9b4584
Merge pull request #16213 from TolyaTalamanov:at/lambdas-for-kernels
...
G-API: Using functors as kernel implementation
* Implement ability to create kernel impls from functors
* Clean up
* Replace make_ocv_functor to ocv_kernel
* Clean up
* Replace GCPUFunctor -> GOCVFunctor
* Move GOCVFunctor to cv::gapi::cpu namespace
* Implement override for rvalue and lvalue cases
* Fix comments to review
* Remove GAPI_EXPORT for template functions
* Fix indentation
2020-02-17 23:29:55 +03:00
Alexander Alekhin
7d998336d3
Merge pull request #16510 from andrey-golubev:unify_g_typed_kernel
2020-02-07 11:22:23 +00:00
Alexander Alekhin
d0d676929d
Merge pull request #16519 from TolyaTalamanov:at/fix-render-text-slowdown
2020-02-06 13:38:22 +00:00
Talamanov, Anatoliy
4dffcbd9f0
Fix render opencv backend text slowdown
2020-02-06 15:12:38 +03:00
Andrey Golubev
5baa2c0706
Update documentation and clean up redundant code
2020-02-05 15:01:42 +02:00
Alexander Alekhin
c56e91dcc0
Merge pull request #16487 from asmorkalov:as/gapi_freetype
2020-02-04 11:40:15 +00:00
Andrey Golubev
e569e9dcbd
Unify G_TYPED_KERNEL and G_TYPED_KERNEL_M
2020-02-04 02:16:51 +02:00
Alexander Smorkalov
a9a33d9a5f
Fixed build with FREETYPE and without tests.
2020-02-03 16:41:31 +03:00
Alexey Smirnov
0d456f9111
Merge pull request #16118 from smirnov-alexey:as/gopaque
...
G-API: GOpaque implementation
* Stub initial copypasted solution
* Fix mov test and add a couple of others
* Fix warnings
* More code coverage and tests
* fix macos warning
* address review comments
* Address review comments and fix indentation
* Fix build on armv7
2020-01-30 21:08:11 +03:00
Alexander Alekhin
4b2363de5c
gapi(test): update test tolerance for DIV operation on ARM
2020-01-24 17:07:24 +03:00
Alexander Alekhin
5265db82c7
Merge pull request #16409 from smirnov-alexey:as/gapi_fix_standalone_streaming
2020-01-24 08:47:57 +00:00
Smirnov Alexey
e5ed22bd5b
Fix linkage in standalone mode
2020-01-22 17:51:16 +03:00
Anatoliy Talamanov
55f2370f36
Merge pull request #16221 from TolyaTalamanov:at/fix-g_typed_kernel_m
...
G-API: Fix G_TYPED_KERNEL_M macro
* Fix G_TYPED_KERNEL_M macro
* Fixes
* Fix windows build
* Fix doxygen
* Added several macros
* Add overloads for G_TYPED_KERNEL
2020-01-13 14:54:10 +03:00
Brian Wignall
659ffaddb4
Fix spelling typos
2019-12-26 06:45:03 -05:00
Maksim Shabunin
b379969c63
Test: avoid duplicated test cases
2019-12-19 14:38:59 +03:00
Alexander Alekhin
fd4fac946a
gapi(test): avoid using of unstable random floating-point input
2019-12-17 13:48:40 +03:00
Orest Chura
287874a444
Merge pull request #15942 from OrestChura:fb_tutorial
...
G-API: Tutorial: Face beautification algorithm implementation
* Introduce a tutorial on face beautification algorithm
- small typo issue in render_ocv.cpp
* Addressing comments rgarnov smirnov-alexey
2019-12-17 11:00:49 +03:00
Alexander Alekhin
c2b6c67431
Merge pull request #16141 from OrestChura:oc/fix-standalone-build
2019-12-12 18:34:12 +00:00
atalaman
4a4ff6749b
Merge pull request #16080 from TolyaTalamanov:at/fix-mosaic-primitive
...
G-API: Mosaic handle corner cases
* Handle corner cases
* Fix mosaic algo
* Fix bug with empty rects
2019-12-12 19:10:14 +03:00
Dmitry Matveev
f270e8d040
Merge pull request #16066 from dmatveev:dm/gapi_slides
...
* G-API: Added G-API Overview slides & its source code
- Sample code snippets are moved to separate files;
- Introduced a separate benchmark to measure Fluid/OpenCV
performance;
- Added notes on API changes (it is still a 4.0, not a 4.2 talk!)
- Added a "Metropolis" beamer download-n-build script.
* G-API: Addressed review issues on G-API overview slides
2019-12-12 18:48:38 +03:00
OrestChura
3cd8976493
Fix standalone-gapi
2019-12-12 18:22:16 +03:00
Alexander Alekhin
121bc50ca9
Merge pull request #16130 from alalek:fix_build_gapi_gcc_4.x
2019-12-11 14:17:03 +00:00
atalaman
0d19fa0720
Merge pull request #16062 from TolyaTalamanov:at/add-default-initlization-for-primitives
...
G-API: Add default initialization for primitives
* Add ctors for primitives
* Add description for constructors
2019-12-11 17:10:42 +03:00
Alexander Alekhin
b8ef2036b0
Merge pull request #16091 from dkurt:png_to_dot
2019-12-11 14:01:39 +00:00
Alexander Alekhin
8b9982a0a5
Merge pull request #16086 from alalek:gapi_test_bitwise_not_exclude_32f
2019-12-11 14:00:59 +00:00
Alexander Alekhin
6b6c2f6087
gapi: fix build with GCC 4.8
2019-12-11 13:31:50 +03:00