Remove adjusting brightness in backend

This commit is contained in:
Bingkun Li 2026-03-08 16:05:37 +08:00
parent f4bbb14ab0
commit 6764c7bfe1

View File

@ -45,7 +45,7 @@ public class ImageUtil {
int lightRate = rotateDTO.getLightRate(); int lightRate = rotateDTO.getLightRate();
if (lightRate != 0) { if (lightRate != 0) {
//OpenCVUtil.multiply(image, lightRate); //OpenCVUtil.multiply(image, lightRate);
OpenCVUtil.enhanceContrast(image, lightRate, 0); // OpenCVUtil.enhanceContrast(image, lightRate, 0);
} }
return image; return image;
} }