mirror of
https://github.com/opencv/opencv.git
synced 2024-11-28 05:06:29 +08:00
dnn: fix index access
This commit is contained in:
parent
93353aea70
commit
4c79318694
@ -2759,8 +2759,12 @@ struct Net::Impl : public detail::NetImplBase
|
||||
it->second.out.empty())
|
||||
{
|
||||
getLayerShapesRecursively(layerId, inOutShapes);
|
||||
it = inOutShapes.find(layerId);
|
||||
CV_Assert(it != inOutShapes.end());
|
||||
}
|
||||
const MatShape& shape = inOutShapes[layerId].out[inputLayerIds[i].oid];
|
||||
const int out_port = inputLayerIds[i].oid;
|
||||
CV_CheckLT(out_port, (int)it->second.out.size(), "");
|
||||
const MatShape& shape = it->second.out[out_port];
|
||||
layerShapes.in.push_back(shape);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user