使用java和opencv对灰度图像进行图像融合会产生奇怪的结果

时间:2018-03-27 09:43:49

标签: java opencv image-processing

我目前正在尝试使用java和OpenCV包装器融合放射灰度图像。我写了一些代码来在数据库中找到相似的图像并融合它们。融合部分是我在努力的地方。这是我正在努力的方法:

public BufferedImage registerImages(BufferedImage source, BufferedImage target) 
throws RegistrationException{

    LinkedList<DMatch> goodMatches = getGoodMatches(source, target);
    if(goodMatches.size() >= 7){
         List<KeyPoint> sourceKeypoints = sourceKeyPointsMat.toList();
        List<KeyPoint> targetKeypoints = targetKeyPointsMat.toList();

        LinkedList<Point> sourcePoints = new LinkedList<>();
        LinkedList<Point> targetPoints = new LinkedList<>();

        for(int i = 0; i < goodMatches.size(); i++) {
            sourcePoints.addLast(sourceKeypoints.get(goodMatches.get(i).queryIdx).pt);
            targetPoints.addLast(targetKeypoints.get(goodMatches.get(i).trainIdx).pt);
        }

        MatOfPoint2f sourceMatOfPoint2f = new MatOfPoint2f();
        sourceMatOfPoint2f.fromList(sourcePoints);
        MatOfPoint2f targetMatOfPoint2f = new MatOfPoint2f();
        targetMatOfPoint2f.fromList(targetPoints);

        Mat homography = Calib3d.findHomography(sourceMatOfPoint2f, targetMatOfPoint2f);            
        Mat transformationResult = new Mat(sourceImageMat.rows(), sourceImageMat.cols(), sourceImageMat.type());                
        Imgproc.warpPerspective(sourceImageMat, transformationResult, homography, transformationResult.size());

        Mat resultImage = new Mat();
        Core.add(transformationResult, targetImageMat, resultImage);

        return mat2BufferedImage(resultImage);
    }
    else{
        throw new RegistrationException();
    }
}

mat2BufferedImage()getGoodMatches()都已经过测试,似乎有效。 findHomography()warpPerspective()似乎有问题,因为这是我查看已转换(未融合)图片时的结果:https://i.imgur.com/8JRQwtG.png

有人知道出了什么问题吗?提前谢谢!

编辑:因此,经过进一步研究,结果表明转换矩阵具有极强的透视变换(值为400-700)。由于图像非常相同/只有很小的差异,我不明白为什么这是findHomography()的结果。这种方法有替代方法吗?

1 个答案:

答案 0 :(得分:0)

我使用drawMatches()来验证goodMatches中没有异常值。异常值可以完全搞乱计算单应性。如果你得到异常值,那么你需要使用findHomography()的强大变体。