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
f738e490
Commit
f738e490
authored
Mar 26, 2019
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #13989 from kohei-us:onnx-conv-transpose-output-shape
parents
55366cae
21242051
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
0 deletions
+32
-0
onnx_importer.cpp
modules/dnn/src/onnx/onnx_importer.cpp
+31
-0
test_onnx_importer.cpp
modules/dnn/test/test_onnx_importer.cpp
+1
-0
No files found.
modules/dnn/src/onnx/onnx_importer.cpp
View file @
f738e490
...
...
@@ -591,6 +591,37 @@ void ONNXImporter::populateNet(Net dstNet)
}
layerParams
.
set
(
"num_output"
,
layerParams
.
blobs
[
0
].
size
[
1
]
*
layerParams
.
get
<
int
>
(
"group"
,
1
));
layerParams
.
set
(
"bias_term"
,
node_proto
.
input_size
()
==
3
);
if
(
layerParams
.
has
(
"output_shape"
))
{
const
DictValue
&
outShape
=
layerParams
.
get
(
"output_shape"
);
if
(
outShape
.
size
()
!=
4
)
CV_Error
(
Error
::
StsNotImplemented
,
"Output shape must have 4 elements."
);
const
int
strideY
=
layerParams
.
get
<
int
>
(
"stride_h"
,
1
);
const
int
strideX
=
layerParams
.
get
<
int
>
(
"stride_w"
,
1
);
const
int
outH
=
outShape
.
getIntValue
(
2
);
const
int
outW
=
outShape
.
getIntValue
(
3
);
if
(
layerParams
.
get
<
String
>
(
"pad_mode"
)
==
"SAME"
)
{
layerParams
.
set
(
"adj_w"
,
(
outW
-
1
)
%
strideX
);
layerParams
.
set
(
"adj_h"
,
(
outH
-
1
)
%
strideY
);
}
else
if
(
layerParams
.
get
<
String
>
(
"pad_mode"
)
==
"VALID"
)
{
if
(
!
layerParams
.
has
(
"kernel_h"
)
||
!
layerParams
.
has
(
"kernel_w"
))
CV_Error
(
Error
::
StsNotImplemented
,
"Required attributes 'kernel_h' and 'kernel_w' are not present."
);
int
kernelH
=
layerParams
.
get
<
int
>
(
"kernel_h"
);
int
kernelW
=
layerParams
.
get
<
int
>
(
"kernel_w"
);
layerParams
.
set
(
"adj_w"
,
(
outW
-
kernelW
)
%
strideX
);
layerParams
.
set
(
"adj_h"
,
(
outH
-
kernelH
)
%
strideY
);
}
}
}
else
if
(
layer_type
==
"Transpose"
)
{
...
...
modules/dnn/test/test_onnx_importer.cpp
View file @
f738e490
...
...
@@ -73,6 +73,7 @@ TEST_P(Test_ONNX_layers, Deconvolution)
testONNXModels
(
"deconvolution"
);
testONNXModels
(
"two_deconvolution"
);
testONNXModels
(
"deconvolution_group"
);
testONNXModels
(
"deconvolution_output_shape"
);
}
TEST_P
(
Test_ONNX_layers
,
Dropout
)
...
...
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