openGL提供了大量的图像识别库和api供你调用,用openGL做起来很简单的,说简单是因为身份证长的都一样,什么位置显示什么信息都是固定的几年十几年都不会变,这个给识别带来很大的便利。首先要把照片里的身份证区域识别出来
成都创新互联是一家专业提供吉县企业网站建设,专注与网站建设、网站制作、H5场景定制、小程序制作等业务。10年已为吉县众多企业、政府机构等服务。创新互联专业网站建设公司优惠进行中。
要是自己动手写几乎不太可能,需要集成别人的api,不过应该是收费的
我刚从北京回来,可以肯定的说,青岛站没有这个功能。 需要换纸票。 建议到代售点换纸票,加5元手续费,比在火车站排长队强多了。
云脉技术的OCR SDK支持身份证识别sdk,而且识别率在业内也是处于领先水平的,你可以去云脉OCR SDK开发者平台上注册一个账号,接入API试用一下,如果好用的话,再去购买套餐
EXCEL中输入身份证号码就能自动显示籍贯的公式编写方法:
找一个省份代码表复制到sheet2中(a列代码,b列省份),然后在b1中使用公式
=vlookup(left(a1,2),sheet2!a:b,2,0)。
身份证号码中:
(1)前1、2位数字表示:所在省份的代码;?
(2)第3、4位数字表示:所在城市的代码;?
(3)第5、6位数字表示:所在区县的代码;?
(4)第7~14位数字表示:出生年、月、日;?
(5)第15、16位数字表示:所在地的派出所的代码;?
(6)第17位数字表示性别:奇数表示男性,偶数表示女性;?
(7)第18位数字是校检码:用来检验身份证的正确性。校检码可以是0~10的数字,10用x表示。
参考以下代码:
package com.sh.xy;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.Window;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
public class MainActivity extends Activity {
// 完整身份证
String id = "323218200001010010";
private EditText ed_id;
private Button btn_show;
private Button btn_show_to_edit;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
ed_id = (EditText) findViewById(R.id.ed_id);
btn_show = (Button) findViewById(R.id.show_id);
btn_show_to_edit = (Button) findViewById(R.id.show_id_to_edit);
// 用于显示的加*身份证
String show_id = id.substring(0, 3) + "********" + id.substring(11);
ed_id.setText(show_id);
btn_show.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(MainActivity.this, id, Toast.LENGTH_SHORT).show();
}
});
btn_show_to_edit.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
ed_id.setText(id);
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
布局文件:
LinearLayout xmlns:android=""
xmlns:tools=""
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.sh.xy.MainActivity"
include
android:id="@+id/top"
android:layout_width="match_parent"
android:layout_height="wrap_content"
layout="@layout/layout_title_bar" /
EditText
android:id="@+id/ed_id"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="显示加*身份ID" /
Button
android:id="@+id/show_id"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="显示完整身份ID" /
Button
android:id="@+id/show_id_to_edit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="将完整身份ID至编辑框" /
/LinearLayout
运行效果:
点击【显示得完整身份ID】按钮:
点击【将完整身份ID至编辑框】按钮: