Fix ReduceL2

This commit is contained in:
Liubov Batanina 2019-11-14 15:30:53 +03:00
parent 94f1c3d152
commit ac4fd4f4ae

View File

@ -784,6 +784,8 @@ void ONNXImporter::populateNet(Net dstNet)
CV_Assert_N(node_proto.input_size() == 1, layerParams.has("axes"));
CV_Assert(graph_proto.node_size() > li + 1 && graph_proto.node(li + 1).op_type() == "Div");
++li;
node_proto = graph_proto.node(li);
layerParams.name = node_proto.output(0);
layerParams.type = "Normalize";
DictValue axes_dict = layerParams.get("axes");