Java使用opencv实现人脸识别(一)标记瞳孔 、截取人脸

2023-11-03 12:00

本文主要是介绍Java使用opencv实现人脸识别(一)标记瞳孔 、截取人脸,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

第一步

先在官网上下载opencv,官方下载opencv安装文件: http://www.opencv.org.cn

第二步

配置opencv,具体过程链接: https://blog.csdn.net/qq_32407233/article/details/84550448

第三步

可以写代码了,我用的是opencv-2431,比较老的版本

import org.opencv.core.*;
import org.opencv.highgui.Highgui;
import org.opencv.imgproc.Imgproc;
import org.opencv.objdetect.CascadeClassifier;
import org.opencv.core.Point;import java.util.Random;public class Main {public static void main(String[] args) {Main m=new Main();System.loadLibrary(Core.NATIVE_LIBRARY_NAME);Mat source,target;target=new Mat();String sourceAddress="C:\\Users\\Administrator\\Desktop\\image\\1.jpg";String targetAddress="C:\\Users\\Administrator\\Desktop\\image\\c10.jpg";source= Highgui.imread(sourceAddress,0);//把图象变为灰度,大小一致输出Highgui.imwrite(sourceAddress,source);Size size=new Size(300,400);Imgproc.resize(source,target,size,0,0,Imgproc.INTER_NEAREST);Highgui.imwrite(sourceAddress,target);try {detectEye(sourceAddress,targetAddress);target=Highgui.imread(targetAddress,1);detectFace(target);} catch (Exception e) {e.printStackTrace();}}/*** opencv实现人眼识别* @param imagePath* @param outFile* @throws Exception*/public static void detectEye(String imagePath,  String outFile) throws Exception {CascadeClassifier eyeDetector = new CascadeClassifier("C:\\Users\\Administrator\\Desktop\\opencv\\haarcascade_eye_tree_eyeglasses.xml");// CascadeClassifier faceDetector = new CascadeClassifier("C:\\Users\\Administrator\\Desktop\\opencv\\haarcascade_frontalface_alt.xml");Mat image = Highgui.imread(imagePath);  //读取图片// 在图片中检测人脸MatOfRect faceDetections = new MatOfRect();eyeDetector.detectMultiScale(image, faceDetections);Rect[] rects = faceDetections.toArray();if(rects != null && rects.length >= 1) {Rect eyea=rects[0];Rect eyeb=rects[1];double dy=(eyeb.y-eyea.y);double dx=(eyeb.x-eyea.x);double len=Math.sqrt(dx*dx+dy*dy);System.out.println("dx is "+dx);System.out.println("dy is "+dy);System.out.println("len is "+len);double angle=Math.atan2(Math.abs(dy),Math.abs(dx))*180.0/Math.PI;System.out.println("angle is "+angle);for(Rect rec:faceDetections.toArray()) {// Core.rectangle(image, new Point(rec.x, rec.y), new Point(rec.x//          +rec.width, rec.y +rec.height), new Scalar(0, 255, 0));//在瞳孔处做标记Point center=new Point();center.x = Math.ceil(rec.x + rec.width*0.5);center.y = Math.ceil(rec.y + rec.height*0.5);Core.circle( image, center, 2, new Scalar(0,255,0), 3, 8, 0 );}}System.out.println(String.format("Detected %s eyes", faceDetections.toArray().length));Highgui.imwrite(outFile, image);System.out.println(String.format("人眼识别成功,人眼图片文件为: %s", outFile));}public static Mat detectFace(Mat img) {System.out.println("Running DetectFace ... ");// 从配置文件lbpcascade_frontalface.xml中创建一个人脸识别器,该文件位于opencv安装目录中CascadeClassifier faceDetector = new CascadeClassifier("C:\\Users\\Administrator\\Desktop\\opencv\\haarcascade_frontalface_alt.xml");CascadeClassifier eyeDetector = new CascadeClassifier("C:\\Users\\Administrator\\Desktop\\opencv\\haarcascade_eye.xml");// 在图片中检测人脸MatOfRect faceDetections = new MatOfRect();faceDetector.detectMultiScale(img, faceDetections);//System.out.println(String.format("Detected %s faces", faceDetections.toArray().length));Rect[] rects = faceDetections.toArray();Random r = new Random();if(rects != null && rects.length >= 1){for (Rect rect : rects) {//画矩形Core.rectangle(img, new Point(rect.x, rect.y), new Point(rect.x + rect.width, rect.y + rect.height),new Scalar(0, 0, 255), 2);//识别人眼Mat faceROI = new Mat(img, rect );MatOfRect eyesDetections = new MatOfRect();eyeDetector.detectMultiScale( faceROI, eyesDetections);System.out.println("Running DetectEye ... "+ eyesDetections);if( eyesDetections.toArray().length > 1){save(img, rect, "C:\\Users\\Administrator\\Desktop\\image\\"+r.nextInt(2000)+".jpg");}}}return img;}/*** opencv将人脸进行截图并保存* @param img*/private static void save(Mat img, Rect rect, String outFile){Mat sub = img.submat(rect);Mat mat = new Mat();Size size = new Size(64, 64);Imgproc.resize(sub, mat, size);Highgui.imwrite(outFile, mat);}}

效果图
图片:

参考链接:[link]https://blog.csdn.net/zmx729618/article/details/78142271.

这篇关于Java使用opencv实现人脸识别(一)标记瞳孔 、截取人脸的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/338026

相关文章

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

springboot security使用jwt认证方式

《springbootsecurity使用jwt认证方式》:本文主要介绍springbootsecurity使用jwt认证方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录前言代码示例依赖定义mapper定义用户信息的实体beansecurity相关的类提供登录接口测试提供一

go中空接口的具体使用

《go中空接口的具体使用》空接口是一种特殊的接口类型,它不包含任何方法,本文主要介绍了go中空接口的具体使用,具有一定的参考价值,感兴趣的可以了解一下... 目录接口-空接口1. 什么是空接口?2. 如何使用空接口?第一,第二,第三,3. 空接口几个要注意的坑坑1:坑2:坑3:接口-空接口1. 什么是空接

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

基于SpringBoot实现文件秒传功能

《基于SpringBoot实现文件秒传功能》在开发Web应用时,文件上传是一个常见需求,然而,当用户需要上传大文件或相同文件多次时,会造成带宽浪费和服务器存储冗余,此时可以使用文件秒传技术通过识别重复... 目录前言文件秒传原理代码实现1. 创建项目基础结构2. 创建上传存储代码3. 创建Result类4.

Java利用JSONPath操作JSON数据的技术指南

《Java利用JSONPath操作JSON数据的技术指南》JSONPath是一种强大的工具,用于查询和操作JSON数据,类似于SQL的语法,它为处理复杂的JSON数据结构提供了简单且高效... 目录1、简述2、什么是 jsONPath?3、Java 示例3.1 基本查询3.2 过滤查询3.3 递归搜索3.4

Tomcat版本与Java版本的关系及说明

《Tomcat版本与Java版本的关系及说明》:本文主要介绍Tomcat版本与Java版本的关系及说明,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Tomcat版本与Java版本的关系Tomcat历史版本对应的Java版本Tomcat支持哪些版本的pythonJ

springboot security验证码的登录实例

《springbootsecurity验证码的登录实例》:本文主要介绍springbootsecurity验证码的登录实例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录前言代码示例引入依赖定义验证码生成器定义获取验证码及认证接口测试获取验证码登录总结前言在spring

SpringBoot日志配置SLF4J和Logback的方法实现

《SpringBoot日志配置SLF4J和Logback的方法实现》日志记录是不可或缺的一部分,本文主要介绍了SpringBoot日志配置SLF4J和Logback的方法实现,文中通过示例代码介绍的非... 目录一、前言二、案例一:初识日志三、案例二:使用Lombok输出日志四、案例三:配置Logback一

springboot security快速使用示例详解

《springbootsecurity快速使用示例详解》:本文主要介绍springbootsecurity快速使用示例,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝... 目录创www.chinasem.cn建spring boot项目生成脚手架配置依赖接口示例代码项目结构启用s