Merge pull request #10268 from dkurt:fix_scale_layer

pull/10112/head
Vadim Pisarevsky 7 years ago
commit c24f10d647
  1. 4
      modules/dnn/src/layers/scale_layer.cpp

@ -74,8 +74,8 @@ public:
{
float w = blobs[0].at<float>(n);
float b = hasBias ? blobs[1].at<float>(n) : 0;
Mat outBlobPlane = getPlane(outBlob, cn, n);
Mat inpBlobPlane = getPlane(inpBlob, cn, n);
Mat outBlobPlane = slice(outBlob, cn, n);
Mat inpBlobPlane = slice(inpBlob, cn, n);
inpBlobPlane.convertTo(outBlobPlane, CV_32F, w, b);
}
}

Loading…
Cancel
Save