You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I have one question about the input data processing in MTCNNDetector::detect(). rgbImg.convertTo(rgbImg, CV_32FC3); rgbImg = rgbImg.t();
Why does rgbImg need a .t()?
The text was updated successfully, but these errors were encountered:
I think rgbImg = rgbImg.t(); converts (or rather simulates) the dimension to NCHW, which is required by the CNN module. blobFromImage actually gives the output in NCHW format.
Hello, I have one question about the input data processing in MTCNNDetector::detect().
rgbImg.convertTo(rgbImg, CV_32FC3); rgbImg = rgbImg.t();
Why does rgbImg need a .t()?
The text was updated successfully, but these errors were encountered: