删除多余日志

This commit is contained in:
13038267101 2022-05-09 19:50:48 +08:00
parent 384dc794b5
commit 8c94b2878d
1 changed files with 0 additions and 3 deletions

View File

@ -676,14 +676,11 @@ namespace hg_imgproc
//mats_.resize(mats.size());
float xy = (float)dpi_dst/200.0;
printf("dpi_dst = %d xy= %f\r\n",dpi_dst,xy);
for (size_t i = 0; i < mats.size(); ++i)
{
cv::Mat out;
cv::resize(mats[i],out, cv::Size(),xy,xy);
mats_.push_back(out);
printf("mats_[i] = %d mats_[2] =%d\r\n",mats_[i].cols,mats_[i].rows);
}
return HG_ERR_OK;
}