[FlyCV] Bump up FlyCV -> official release 1.0.0 (#916)

This commit is contained in:
DefTruth
2022-12-21 10:36:07 +08:00
committed by GitHub
parent 5e350655f0
commit 725fe52df3
4 changed files with 5 additions and 5 deletions
@@ -106,7 +106,7 @@ bool StridePad::ImplByFlyCV(Mat* mat) {
fcv::Mat new_im;
// top, bottom, left, right
fcv::copy_make_border(*im, new_im, 0, pad_h, 0, pad_w,
fcv::BorderTypes::BORDER_CONSTANT, value);
fcv::BorderType::BORDER_CONSTANT, value);
mat->SetMat(new_im);
mat->SetHeight(new_im.height());
mat->SetWidth(new_im.width());