溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何用Opencv給韋小寶的身份證透視變換

發(fā)布時(shí)間:2021-12-15 17:52:04 來源:億速云 閱讀:220 作者:柒染 欄目:大數(shù)據(jù)

這篇文章給大家介紹如何用Opencv給韋小寶的身份證透視變換,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。

有時(shí)候我們項(xiàng)目上需要身份證識(shí)別,但是有的人拍的身份證不是倒的,就是歪的。讓后臺(tái)去識(shí)別很麻煩,經(jīng)常識(shí)別不準(zhǔn)。但有了 opencv 的透視變換,你再怎么歪,我也能幫你矯正過來。

透視變換原理

透視變換(Perspective Transformation)是將成像投影到一個(gè)新的視平面(Viewing Plane),也稱作投影映射(Projective Mapping)。如圖所示

如何用Opencv給韋小寶的身份證透視變換

JAVA 實(shí)現(xiàn)

首先獲取身份證四個(gè)點(diǎn)的坐標(biāo),https://uutool.cn/img-coord/ 這個(gè)網(wǎng)站可以在線獲取圖片坐標(biāo),實(shí)際在項(xiàng)目的時(shí)候,這四個(gè)點(diǎn)的坐標(biāo)可以讓前端傳遞給你。

如何用Opencv給韋小寶的身份證透視變換

import org.opencv.core.*;
import org.opencv.imgcodecs.Imgcodecs;
import org.opencv.imgproc.Imgproc;
import org.opencv.utils.Converters;

import java.util.List;

public class PerspectiveTransform {

    public static void main(String[] args) {
        String srcImgPath = "/home/IdeaProjects/opencv-java/src/main/resources/2020-09-13_11-55.png";

        String x1 = "104,278";
        String x2 = "523,49";
        String x3 = "652,235";
        String x4 = "223,491";
        String destImgPath = "/home/IdeaProjects/opencv-java/src/main/resources/test5.png";

        perspectiveTransform(srcImgPath,x1,x2,x3,x4,destImgPath);
    }

    private static void perspectiveTransform(String srcImgPath,String x1, String x2,
                                             String x3,String x4, String destImgPath){
        System.loadLibrary(Core.NATIVE_LIBRARY_NAME);

        Mat src = Imgcodecs.imread(srcImgPath);
        // 讀取圖像到矩陣中,取灰度圖像
        if (src.empty()) {
            return;
        }
        try {
            Mat dst = new Mat();

            List<Point> listSrcs = java.util.Arrays.asList(getPoint(x1), getPoint(x2),
                    getPoint(x3), getPoint(x4));
            Mat srcPoints = Converters.vector_Point_to_Mat(listSrcs, CvType.CV_32F);

            List<Point> listDsts = java.util.Arrays.asList(new Point(0, 0), new Point(1011, 0),
                    new Point(1011, 638), new Point(0, 638));

            Mat dstPoints = Converters.vector_Point_to_Mat(listDsts, CvType.CV_32F);

            Mat perspectiveMmat = Imgproc.getPerspectiveTransform(srcPoints, dstPoints);

            Size size = new Size(new Point(1011, 638));
            Imgproc.warpPerspective(src, dst, perspectiveMmat, size, Imgproc.INTER_LINEAR);

            Mat gray = gray(dst);
            Imgcodecs.imwrite(destImgPath, gray);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static Point getPoint(String points) {
        if (points == null || "".equals(points)) {
            throw new NullPointerException("坐標(biāo)參數(shù)為空");
        }

        String[] split = points.split(",");
        if (split.length == 0) {
            throw new NullPointerException("坐標(biāo)參數(shù)為空");
        }
        return new Point(Double.valueOf(split[0]), Double.valueOf(split[1]));
    }


    /**
     * 作用:灰度化
     *
     * @param src Mat矩陣圖像
     * @return
     */
    public static Mat gray(Mat src) {
        Mat gray = new Mat();
        if (src.channels() == 3) {
            Imgproc.cvtColor(src, gray, Imgproc.COLOR_BGR2GRAY);
            src = gray;
        } else {
            System.out.println("The Image File Is Not The RGB File!");
        }
        return src;
    }
}

關(guān)于如何用Opencv給韋小寶的身份證透視變換就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI