diff --git a/hgdriver/hgdev/image_process.cpp b/hgdriver/hgdev/image_process.cpp index 147bcf3..8577451 100644 --- a/hgdriver/hgdev/image_process.cpp +++ b/hgdriver/hgdev/image_process.cpp @@ -523,7 +523,7 @@ namespace hg_imgproc float vratio = 0.0; float hratio = 0.0; - cv::imwrite("C:\\image\\imdecode" + std::to_string(img_idx++) + ".jpg", mat); + //cv::imwrite("C:\\image\\imdecode" + std::to_string(img_idx++) + ".jpg", mat); int dpi = param_.dpi == 600 ? 3 : (param_.dpi < 599 && param_.dpi >= 300) ? 2 : 1; int mode = param_.color_mode == COLOR_MODE_24_BITS ? 1 : 0; for (auto it : correction_image_map_) @@ -1844,7 +1844,7 @@ namespace hg_imgproc memcpy(lutROI.data, tran.data, tran.total()); } - cv::imwrite("C:\\image\\" + std::to_string(lut_idx++) + ".bmp", lut); + //cv::imwrite("C:\\image\\" + std::to_string(lut_idx++) + ".bmp", lut); return lut; }