mirror of
https://github.com/opencv/opencv.git
synced 2024-11-24 11:10:21 +08:00
Merge pull request #21750 from alalek:dnn_fix_index_access
This commit is contained in:
commit
9b2b2c88df
@ -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