资讯 文档
技术能力
语音技术
文字识别
人脸与人体
图像技术
语言与知识
视频技术

离婚证识别

接口描述

支持对离婚证进行结构化识别,包括姓名_男身份证件号_男出生日期_男国籍_男性别_男姓名_女身份证件号_女出生日期_女国籍_女性别_女离婚证字号持证人备注登记日期,全部 14 个字段。

在线调试

您可以在 示例代码中心 中调试该接口,可进行签名验证、查看在线调用的请求内容和返回结果、示例代码的自动生成。

请求说明

请求示例

HTTP 方法:POST

请求URL: https://aip.baidubce.com/rest/2.0/ocr/v1/divorce_certificate

URL参数:

参数
access_token 通过API Key和Secret Key获取的access_token,参考“Access Token获取

Header如下:

参数
Content-Type application/x-www-form-urlencoded

Body中放置请求参数,参数详情如下:

请求参数

参数 是否必选 类型 可选值范围 说明
image 和 url/pdf_file 三选一 string - 图像数据,base64编码后进行urlencode,要求base64编码和urlencode后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/jpeg/png/bmp格式
优先级:image > url > pdf_file,当image字段存在时,url、pdf_file字段失效
url 和 image/pdf_file 三选一 string - 图片完整url,url长度不超过1024字节,url对应的图片base64编码后大小不超过4M,最短边至少15px,最长边最大4096px,支持jpg/jpeg/png/bmp格式
优先级:image > url > pdf_file,当image字段存在时,url字段失效
请注意关闭URL防盗链
pdf_file 和 image/url 三选一 string - PDF文件,base64编码后进行urlencode,要求base64编码和urlencode后大小不超过4M,最短边至少15px,最长边最大4096px
优先级:image > url > pdf_file,当image、url字段存在时,pdf_file字段失效
pdf_file_num string - 需要识别的PDF文件的对应页码,当 pdf_file 参数有效时,识别传入页码的对应页面内容,若不传入,则默认识别第 1 页

请求代码示例

提示一:使用示例代码前,请记得替换其中的示例Token、图片地址或Base64信息。

提示二:部分语言依赖的类或库,请在代码注释中查看下载地址。

curl -i -k 'https://aip.baidubce.com/rest/2.0/ocr/v1/divorce_certificate?access_token=【调用鉴权接口获取的token】' --data 'image=【图片Base64编码,需UrlEncode】' -H 'Content-Type:application/x-www-form-urlencoded'
# encoding:utf-8

import requests
import base64

'''
离婚证识别
'''

request_url = "https://aip.baidubce.com/rest/2.0/ocr/v1/divorce_certificate"
# 二进制方式打开图片文件
f = open('[本地文件]', 'rb')
img = base64.b64encode(f.read())

params = {"image":img}
access_token = '[调用鉴权接口获取的token]'
request_url = request_url + "?access_token=" + access_token
headers = {'content-type': 'application/x-www-form-urlencoded'}
response = requests.post(request_url, data=params, headers=headers)
if response:
    print (response.json())
package com.baidu.ai.aip;

import com.baidu.ai.aip.utils.Base64Util;
import com.baidu.ai.aip.utils.FileUtil;
import com.baidu.ai.aip.utils.HttpUtil;

import java.net.URLEncoder;

/**
* 离婚证识别
*/
public class DivorceCertificate{

    /**
    * 重要提示代码中所需工具类
    * FileUtil,Base64Util,HttpUtil,GsonUtils请从
    * https://ai.baidu.com/file/658A35ABAB2D404FBF903F64D47C1F72
    * https://ai.baidu.com/file/C8D81F3301E24D2892968F09AE1AD6E2
    * https://ai.baidu.com/file/544D677F5D4E4F17B4122FBD60DB82B3
    * https://ai.baidu.com/file/470B3ACCA3FE43788B5A963BF0B625F3
    * 下载
    */
    public static String divorceCertificate() {
        // 请求url
        String url = "https://aip.baidubce.com/rest/2.0/ocr/v1/divorce_certificate";
        try {
            // 本地文件路径
            String filePath = "[本地文件路径]";
            byte[] imgData = FileUtil.readFileByBytes(filePath);
            String imgStr = Base64Util.encode(imgData);
            String imgParam = URLEncoder.encode(imgStr, "UTF-8");

            String param = "image=" + imgParam;

            // 注意这里仅为了简化编码每一次请求都去获取access_token,线上环境access_token有过期时间, 客户端可自行缓存,过期后重新获取。
            String accessToken = "[调用鉴权接口获取的token]";

            String result = HttpUtil.post(url, accessToken, param);
            System.out.println(result);
            return result;
        } catch (Exception e) {
            e.printStackTrace();
        }
        return null;
    }

    public static void main(String[] args) {
        DivorceCertificate.divorceCertificate();
    }
}
#include <iostream>
#include <curl/curl.h>

// libcurl库下载链接:https://curl.haxx.se/download.html
// jsoncpp库下载链接:https://github.com/open-source-parsers/jsoncpp/
const static std::string request_url = "https://aip.baidubce.com/rest/2.0/ocr/v1/divorce_certificate";
static std::string divorceCertificate_result;
/**
* curl发送http请求调用的回调函数,回调函数中对返回的json格式的body进行了解析,解析结果储存在全局的静态变量当中
* @param 参数定义见libcurl文档
* @return 返回值定义见libcurl文档
*/
static size_t callback(void *ptr, size_t size, size_t nmemb, void *stream) {
    // 获取到的body存放在ptr中,先将其转换为string格式
    divorceCertificate_result = std::string((char *) ptr, size * nmemb);
    return size * nmemb;
}
/**
* 离婚证识别
* @return 调用成功返回0,发生错误返回其他错误码
*/
int divorceCertificate(std::string &json_result, const std::string &access_token) {
    std::string url = request_url + "?access_token=" + access_token;
    CURL *curl = NULL;
    CURLcode result_code;
    int is_success;
    curl = curl_easy_init();
    if (curl) {
        curl_easy_setopt(curl, CURLOPT_URL, url.data());
        curl_easy_setopt(curl, CURLOPT_POST, 1);
        curl_httppost *post = NULL;
        curl_httppost *last = NULL;
        curl_formadd(&post, &last, CURLFORM_COPYNAME, "image", CURLFORM_COPYCONTENTS, "【base64_img】", CURLFORM_END);

        curl_easy_setopt(curl, CURLOPT_HTTPPOST, post);
        curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, callback);
        result_code = curl_easy_perform(curl);
        if (result_code != CURLE_OK) {
            fprintf(stderr, "curl_easy_perform() failed: %s
",
                    curl_easy_strerror(result_code));
            is_success = 1;
            return is_success;
        }
        json_result = divorceCertificate_result;
        curl_easy_cleanup(curl);
        is_success = 0;
    } else {
        fprintf(stderr, "curl_easy_init() failed.");
        is_success = 1;
    }
    return is_success;
}
<?php
/**
* 发起http post请求(REST API), 并获取REST请求的结果
* @param string $url
* @param string $param
* @return - http response body if succeeds, else false.
*/
function request_post($url = '', $param = '')
{
    if (empty($url) || empty($param)) {
        return false;
    }

    $postUrl = $url;
    $curlPost = $param;
    // 初始化curl
    $curl = curl_init();
    curl_setopt($curl, CURLOPT_URL, $postUrl);
    curl_setopt($curl, CURLOPT_HEADER, 0);
    // 要求结果为字符串且输出到屏幕上
    curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
    // post提交方式
    curl_setopt($curl, CURLOPT_POST, 1);
    curl_setopt($curl, CURLOPT_POSTFIELDS, $curlPost);
    // 运行curl
    $data = curl_exec($curl);
    curl_close($curl);

    return $data;
}

$token = '[调用鉴权接口获取的token]';
$url = 'https://aip.baidubce.com/rest/2.0/ocr/v1/divorce_certificate?access_token=' . $token;
$img = file_get_contents('[本地文件路径]');
$img = base64_encode($img);
$bodys = array(
    'image' => $img
);
$res = request_post($url, $bodys);

var_dump($res);
using System;
using System.IO;
using System.Net;
using System.Text;
using System.Web;

namespace com.baidu.ai
{
    public class divorceCertificate
    {
        // 离婚证识别
        public static string divorceCertificate()
        {
            string token = "[调用鉴权接口获取的token]";
            string host = "https://aip.baidubce.com/rest/2.0/ocr/v1/divorce_certificate?access_token=" + token;
            Encoding encoding = Encoding.Default;
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create(host);
            request.Method = "post";
            request.KeepAlive = true;
            // 图片的base64编码
            string base64 = getFileBase64("[本地图片文件]");
            String str = "image=" + HttpUtility.UrlEncode(base64);
            byte[] buffer = encoding.GetBytes(str);
            request.ContentLength = buffer.Length;
            request.GetRequestStream().Write(buffer, 0, buffer.Length);
            HttpWebResponse response = (HttpWebResponse)request.GetResponse();
            StreamReader reader = new StreamReader(response.GetResponseStream(), Encoding.Default);
            string result = reader.ReadToEnd();
            Console.WriteLine("离婚证识别:");
            Console.WriteLine(result);
            return result;
        }

        public static String getFileBase64(String fileName) {
            FileStream filestream = new FileStream(fileName, FileMode.Open);
            byte[] arr = new byte[filestream.Length];
            filestream.Read(arr, 0, (int)filestream.Length);
            string baser64 = Convert.ToBase64String(arr);
            filestream.Close();
            return baser64;
        }
    }
}

返回说明

返回参数

字段 是否必选 类型 说明
log_id uint64 唯一的log id,用于问题定位
pdf_file_size string 传入PDF文件的总页数,当 pdf_file 参数有效时返回该字段
words_result_num uint32 识别结果数,表示words_result的元素个数
words_result object{} 识别结果
+ word string 字段识别结果,对应姓名_男身份证件号_男出生日期_男国籍_男性别_男姓名_女身份证件号_女出生日期_女国籍_女性别_女离婚证字号持证人备注登记日期 共 14 个字段的识别结果
+ location object{} 字段位置信息
++ top uint32 字段的上边距
++ left uint32 字段的左边距
++ height uint32 字段的高度
++ width uint32 字段的宽度
+ probability float 字段识别结果置信度

返回示例

{
    "words_result_num": 14,
    "words_result": {
        "姓名_男": [
            {
                "word": "李佑",
                "probability": 2.998,
                "location": {
                    "top": 423,
                    "left": 114,
                    "width": 45,
                    "height": 16
                }
            }
        ],
        "身份证件号_男": [
            {
                "word": "433024197905103103",
                "probability": 17.964,
                "location": {
                    "top": 484,
                    "left": 152,
                    "width": 138,
                    "height": 15
                }
            }
        ],
        "出生日期_男": [
            {
                "word": "1979年05月10日",
                "probability": 10.982,
                "location": {
                    "top": 465,
                    "left": 368,
                    "width": 104,
                    "height": 15
                }
            }
        ],
        "国籍_男": [
            {
                "word": "中国",
                "probability": 1.998,
                "location": {
                    "top": 454,
                    "left": 111,
                    "width": 31,
                    "height": 17
                }
            }
        ],
        "性别_男": [
            {
                "word": "男",
                "probability": 1.0,
                "location": {
                    "top": 424,
                    "left": 350,
                    "width": 15,
                    "height": 16
                }
            }
        ],
        "姓名_女": [
            {
                "word": "刘美",
                "probability": 2.287,
                "location": {
                    "top": 533,
                    "left": 113,
                    "width": 44,
                    "height": 16
                }
            }
        ],
        "身份证件号_女": [
            {
                "word": "433024197609160160",
                "probability": 17.971,
                "location": {
                    "top": 593,
                    "left": 153,
                    "width": 138,
                    "height": 14
                }
            }
        ],
        "出生日期_女": [
            {
                "word": "1976年09月16日",
                "probability": 10.989,
                "location": {
                    "top": 568,
                    "left": 367,
                    "width": 104,
                    "height": 15
                }
            }
        ],
        "国籍_女": [
            {
                "word": "中国",
                "probability": 1.999,
                "location": {
                    "top": 560,
                    "left": 115,
                    "width": 31,
                    "height": 17
                }
            }
        ],
        "性别_女": [
            {
                "word": "女",
                "probability": 1.0,
                "location": {
                    "top": 534,
                    "left": 351,
                    "width": 16,
                    "height": 16
                }
            }
        ],
        "登记日期": [
            {
                "word": "2010年06月10日",
                "probability": 10.983,
                "location": {
                    "top": 204,
                    "left": 108,
                    "width": 151,
                    "height": 16
                }
            }
        ],
        "离婚证字号": [
            {
                "word": "L010101-1020-001111",
                "probability": 18.981,
                "location": {
                    "top": 268,
                    "left": 109,
                    "width": 152,
                    "height": 14
                }
            }
        ],
        "持证人": [
            {
                "word": "李佑",
                "probability": 2.998,
                "location": {
                    "top": 145,
                    "left": 109,
                    "width": 49,
                    "height": 16
                }
            }
        ],
        "备注": [
            {
                "word": "备注",
                "probability": 1.998,
                "location": {
                    "top": 292,
                    "left": 71,
                    "width": 33,
                    "height": 17
                }
            }
        ]
    },
    "log_id": 1873982128764157190
}
上一篇
食品生产许可证识别
下一篇
交通场景文字识别