Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
50af4df1
Commit
50af4df1
authored
May 13, 2019
by
Ruslan Garnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed roi inference to always produce even sizes for nv12
parent
b2abd8ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
10 deletions
+47
-10
gfluidbackend.cpp
modules/gapi/src/backends/fluid/gfluidbackend.cpp
+22
-1
gapi_fluid_resize_test.cpp
modules/gapi/test/gapi_fluid_resize_test.cpp
+25
-9
No files found.
modules/gapi/src/backends/fluid/gfluidbackend.cpp
View file @
50af4df1
...
@@ -648,6 +648,7 @@ void cv::gimpl::GFluidExecutable::initBufferRois(std::vector<int>& readStarts,
...
@@ -648,6 +648,7 @@ void cv::gimpl::GFluidExecutable::initBufferRois(std::vector<int>& readStarts,
cv
::
gapi
::
own
::
Rect
produced
=
rois
[
m_id_map
.
at
(
data
.
rc
)];
cv
::
gapi
::
own
::
Rect
produced
=
rois
[
m_id_map
.
at
(
data
.
rc
)];
// Apply resize-specific roi transformations
cv
::
gapi
::
own
::
Rect
resized
;
cv
::
gapi
::
own
::
Rect
resized
;
switch
(
fg
.
metadata
(
oh
).
get
<
FluidUnit
>
().
k
.
m_kind
)
switch
(
fg
.
metadata
(
oh
).
get
<
FluidUnit
>
().
k
.
m_kind
)
{
{
...
@@ -657,8 +658,28 @@ void cv::gimpl::GFluidExecutable::initBufferRois(std::vector<int>& readStarts,
...
@@ -657,8 +658,28 @@ void cv::gimpl::GFluidExecutable::initBufferRois(std::vector<int>& readStarts,
default
:
GAPI_Assert
(
false
);
default
:
GAPI_Assert
(
false
);
}
}
// All below transformations affect roi of the writer, preserve read start position here
int
readStart
=
resized
.
y
;
int
readStart
=
resized
.
y
;
cv
::
gapi
::
own
::
Rect
roi
=
adjFilterRoi
(
resized
,
fd
.
border_size
,
in_meta
.
size
.
height
);
// Extend required input roi (both y and height) to be even if it's produced by NV12toRGB
if
(
!
in_node
->
inNodes
().
empty
())
{
auto
in_data_producer
=
in_node
->
inNodes
().
front
();
if
(
fg
.
metadata
(
in_data_producer
).
get
<
FluidUnit
>
().
k
.
m_kind
==
GFluidKernel
::
Kind
::
NV12toRGB
)
{
if
(
resized
.
y
%
2
!=
0
)
{
resized
.
y
--
;
resized
.
height
++
;
}
if
(
resized
.
height
%
2
!=
0
)
{
resized
.
height
++
;
}
}
}
// Apply filter-specific roi transformations, clip to image size
// Note: done even for non-filter kernels as applies border-related transformations
// (required in the case when there are multiple readers with different border requirements)
auto
roi
=
adjFilterRoi
(
resized
,
fd
.
border_size
,
in_meta
.
size
.
height
);
auto
in_id
=
m_id_map
.
at
(
in_data
.
rc
);
auto
in_id
=
m_id_map
.
at
(
in_data
.
rc
);
if
(
rois
[
in_id
]
==
cv
::
gapi
::
own
::
Rect
{})
if
(
rois
[
in_id
]
==
cv
::
gapi
::
own
::
Rect
{})
...
...
modules/gapi/test/gapi_fluid_resize_test.cpp
View file @
50af4df1
...
@@ -794,18 +794,24 @@ struct Preproc4lpiTest : public TestWithParam <std::tuple<cv::Size, cv::Size, cv
...
@@ -794,18 +794,24 @@ struct Preproc4lpiTest : public TestWithParam <std::tuple<cv::Size, cv::Size, cv
TEST_P
(
Preproc4lpiTest
,
Test
)
TEST_P
(
Preproc4lpiTest
,
Test
)
{
{
using
namespace
gapi_test_kernels
;
using
namespace
gapi_test_kernels
;
cv
::
Size
in
_sz
,
out_sz
;
cv
::
Size
y
_sz
,
out_sz
;
cv
::
Rect
roi
;
cv
::
Rect
roi
;
std
::
tie
(
in
_sz
,
out_sz
,
roi
)
=
GetParam
();
std
::
tie
(
y
_sz
,
out_sz
,
roi
)
=
GetParam
();
int
interp
=
cv
::
INTER_LINEAR
;
int
interp
=
cv
::
INTER_LINEAR
;
cv
::
Mat
in_mat
=
cv
::
Mat
(
in_sz
,
CV_8UC3
);
cv
::
Size
uv_sz
(
y_sz
.
width
/
2
,
y_sz
.
height
/
2
);
cv
::
Size
in_sz
(
y_sz
.
width
,
y_sz
.
height
*
3
/
2
);
cv
::
Mat
in_mat
=
cv
::
Mat
(
in_sz
,
CV_8UC1
);
cv
::
randn
(
in_mat
,
cv
::
Scalar
::
all
(
127.0
f
),
cv
::
Scalar
::
all
(
40.
f
));
cv
::
randn
(
in_mat
,
cv
::
Scalar
::
all
(
127.0
f
),
cv
::
Scalar
::
all
(
40.
f
));
cv
::
Mat
y_mat
=
cv
::
Mat
(
y_sz
,
CV_8UC1
,
in_mat
.
data
);
cv
::
Mat
uv_mat
=
cv
::
Mat
(
uv_sz
,
CV_8UC2
,
in_mat
.
data
+
in_mat
.
step1
()
*
y_sz
.
height
);
cv
::
Mat
out_mat
,
out_mat_ocv
;
cv
::
Mat
out_mat
,
out_mat_ocv
;
cv
::
GMat
in
;
cv
::
GMat
y
,
uv
;
auto
splitted
=
split3_4lpi
(
in
);
auto
rgb
=
cv
::
gapi
::
NV12toRGB
(
y
,
uv
);
auto
splitted
=
split3_4lpi
(
rgb
);
cv
::
GMat
resized
[
3
]
=
{
cv
::
gapi
::
resize
(
std
::
get
<
0
>
(
splitted
),
out_sz
,
0
,
0
,
interp
)
cv
::
GMat
resized
[
3
]
=
{
cv
::
gapi
::
resize
(
std
::
get
<
0
>
(
splitted
),
out_sz
,
0
,
0
,
interp
)
,
cv
::
gapi
::
resize
(
std
::
get
<
1
>
(
splitted
),
out_sz
,
0
,
0
,
interp
)
,
cv
::
gapi
::
resize
(
std
::
get
<
1
>
(
splitted
),
out_sz
,
0
,
0
,
interp
)
...
@@ -813,16 +819,18 @@ TEST_P(Preproc4lpiTest, Test)
...
@@ -813,16 +819,18 @@ TEST_P(Preproc4lpiTest, Test)
auto
out
=
merge3_4lpi
(
resized
[
0
],
resized
[
1
],
resized
[
2
]);
auto
out
=
merge3_4lpi
(
resized
[
0
],
resized
[
1
],
resized
[
2
]);
cv
::
GComputation
c
(
cv
::
GIn
(
in
),
cv
::
GOut
(
out
));
cv
::
GComputation
c
(
cv
::
GIn
(
y
,
uv
),
cv
::
GOut
(
out
));
auto
pkg
=
cv
::
gapi
::
combine
(
cv
::
gapi
::
core
::
fluid
::
kernels
(),
auto
pkg
=
cv
::
gapi
::
combine
(
cv
::
gapi
::
core
::
fluid
::
kernels
(),
fluidResizeTestPackage
(
interp
,
in_sz
,
out_sz
,
4
),
fluidResizeTestPackage
(
interp
,
in_sz
,
out_sz
,
4
),
cv
::
unite_policy
::
REPLACE
);
cv
::
unite_policy
::
REPLACE
);
c
.
apply
(
cv
::
gin
(
in
_mat
),
cv
::
gout
(
out_mat
)
c
.
apply
(
cv
::
gin
(
y_mat
,
uv
_mat
),
cv
::
gout
(
out_mat
)
,
cv
::
compile_args
(
pkg
,
cv
::
GFluidOutputRois
{{
to_own
(
roi
)}}));
,
cv
::
compile_args
(
pkg
,
cv
::
GFluidOutputRois
{{
to_own
(
roi
)}}));
cv
::
resize
(
in_mat
,
out_mat_ocv
,
out_sz
,
0
,
0
,
interp
);
cv
::
Mat
rgb_mat
;
cv
::
cvtColor
(
in_mat
,
rgb_mat
,
cv
::
COLOR_YUV2RGB_NV12
);
cv
::
resize
(
rgb_mat
,
out_mat_ocv
,
out_sz
,
0
,
0
,
interp
);
EXPECT_EQ
(
0
,
cv
::
countNonZero
(
out_mat
(
roi
)
!=
out_mat_ocv
(
roi
)));
EXPECT_EQ
(
0
,
cv
::
countNonZero
(
out_mat
(
roi
)
!=
out_mat_ocv
(
roi
)));
}
}
...
@@ -848,7 +856,15 @@ INSTANTIATE_TEST_CASE_P(Fluid, Preproc4lpiTest,
...
@@ -848,7 +856,15 @@ INSTANTIATE_TEST_CASE_P(Fluid, Preproc4lpiTest,
cv
::
Size
{
49
,
49
},
cv
::
Rect
{
0
,
11
,
49
,
15
})
cv
::
Size
{
49
,
49
},
cv
::
Rect
{
0
,
11
,
49
,
15
})
,
std
::
make_tuple
(
cv
::
Size
{
64
,
64
},
,
std
::
make_tuple
(
cv
::
Size
{
64
,
64
},
cv
::
Size
{
49
,
49
},
cv
::
Rect
{
0
,
39
,
49
,
10
})
cv
::
Size
{
49
,
49
},
cv
::
Rect
{
0
,
39
,
49
,
10
})
));
,
std
::
make_tuple
(
cv
::
Size
{
640
,
480
},
cv
::
Size
{
300
,
199
},
cv
::
Rect
{
0
,
0
,
300
,
50
})
,
std
::
make_tuple
(
cv
::
Size
{
640
,
480
},
cv
::
Size
{
300
,
199
},
cv
::
Rect
{
0
,
50
,
300
,
50
})
,
std
::
make_tuple
(
cv
::
Size
{
640
,
480
},
cv
::
Size
{
300
,
199
},
cv
::
Rect
{
0
,
100
,
300
,
50
})
,
std
::
make_tuple
(
cv
::
Size
{
640
,
480
},
cv
::
Size
{
300
,
199
},
cv
::
Rect
{
0
,
150
,
300
,
49
})
));
}
// namespace opencv_test
}
// namespace opencv_test
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment