OpenCV光反射减少

时间:2014-06-23 06:07:06

标签: java android opencv

我有光反射问题,这是用标准相机拍摄的照片

Original Image taken with camera

和我做的过程

1. blur the image
    Imgproc.GaussianBlur(blurred, blurred, new Size(17, 17),
    Imgproc.BORDER_ISOLATED);
2. create second empty image that using hsv
    Imgproc.cvtColor(gray0, gray0, Imgproc.COLOR_BGR2HSV);
3. mix the image color chanel (fromto {0,0})
    Core.mixChannels(blurredlist, graylist, fromto);
4. Threshold, Canny, and delate
Imgproc.threshold(gray0, gray0, 126, 255, Imgproc.THRESH_TRUNC);
Imgproc.Canny(gray0, gray0, 50, 70);
Imgproc.dilate(gray0, gray0, Mat.ones(new Size(3, 3), 0));
5. finding the contour
    Imgproc.findContours(gray0, contours, new Mat(), Imgproc.RETR_EXTERNAL,
        Imgproc.CHAIN_APPROX_SIMPLE);
6. magicall filter for biggest contour and stuff

这是结果 After Thresholding 如何从检测到的轮廓中移除背光或连接虚线?

1 个答案:

答案 0 :(得分:1)

这里的问题是反射使像素过饱和。这里有两条可能的路径;

调整条件

调整条件是最简单的方法。通过简单地控制拍摄图像的条件,您可以删除大多数(如果不是全部)困难情况(例如这些)。 考虑使用偏振滤镜,更好(例如;漫反射)照明,更好的曝光设置等。

调整图片

另一种选择(例如,之后删除突出显示)要困难得多。这主要是因为过饱和度会破坏大量数据。最常用的方法是使用HDR图像,这样可以保留更多的数据,因为图像是在不同的曝光下拍摄的。 在某些情况下,由于RAW转换可能会出现问题;但改善这一点通常很乏味。