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中SM2公钥加密、私钥解密的实现示例详解

《SpringBoot中SM2公钥加密、私钥解密的实现示例详解》本文介绍了如何在SpringBoot项目中实现SM2公钥加密和私钥解密的功能,通过使用Hutool库和BouncyCastle依赖,简化... 目录一、前言1、加密信息(示例)2、加密结果(示例)二、实现代码1、yml文件配置2、创建SM2工具

Spring WebFlux 与 WebClient 使用指南及最佳实践

《SpringWebFlux与WebClient使用指南及最佳实践》WebClient是SpringWebFlux模块提供的非阻塞、响应式HTTP客户端,基于ProjectReactor实现,... 目录Spring WebFlux 与 WebClient 使用指南1. WebClient 概述2. 核心依

Mysql实现范围分区表(新增、删除、重组、查看)

《Mysql实现范围分区表(新增、删除、重组、查看)》MySQL分区表的四种类型(范围、哈希、列表、键值),主要介绍了范围分区的创建、查询、添加、删除及重组织操作,具有一定的参考价值,感兴趣的可以了解... 目录一、mysql分区表分类二、范围分区(Range Partitioning1、新建分区表:2、分

MySQL 定时新增分区的实现示例

《MySQL定时新增分区的实现示例》本文主要介绍了通过存储过程和定时任务实现MySQL分区的自动创建,解决大数据量下手动维护的繁琐问题,具有一定的参考价值,感兴趣的可以了解一下... mysql创建好分区之后,有时候会需要自动创建分区。比如,一些表数据量非常大,有些数据是热点数据,按照日期分区MululbU

Spring Boot @RestControllerAdvice全局异常处理最佳实践

《SpringBoot@RestControllerAdvice全局异常处理最佳实践》本文详解SpringBoot中通过@RestControllerAdvice实现全局异常处理,强调代码复用、统... 目录前言一、为什么要使用全局异常处理?二、核心注解解析1. @RestControllerAdvice2

Spring IoC 容器的使用详解(最新整理)

《SpringIoC容器的使用详解(最新整理)》文章介绍了Spring框架中的应用分层思想与IoC容器原理,通过分层解耦业务逻辑、数据访问等模块,IoC容器利用@Component注解管理Bean... 目录1. 应用分层2. IoC 的介绍3. IoC 容器的使用3.1. bean 的存储3.2. 方法注

MySQL中查找重复值的实现

《MySQL中查找重复值的实现》查找重复值是一项常见需求,比如在数据清理、数据分析、数据质量检查等场景下,我们常常需要找出表中某列或多列的重复值,具有一定的参考价值,感兴趣的可以了解一下... 目录技术背景实现步骤方法一:使用GROUP BY和HAVING子句方法二:仅返回重复值方法三:返回完整记录方法四:

Python内置函数之classmethod函数使用详解

《Python内置函数之classmethod函数使用详解》:本文主要介绍Python内置函数之classmethod函数使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地... 目录1. 类方法定义与基本语法2. 类方法 vs 实例方法 vs 静态方法3. 核心特性与用法(1编程客

IDEA中新建/切换Git分支的实现步骤

《IDEA中新建/切换Git分支的实现步骤》本文主要介绍了IDEA中新建/切换Git分支的实现步骤,通过菜单创建新分支并选择是否切换,创建后在Git详情或右键Checkout中切换分支,感兴趣的可以了... 前提:项目已被Git托管1、点击上方栏Git->NewBrancjsh...2、输入新的分支的

Spring事务传播机制最佳实践

《Spring事务传播机制最佳实践》Spring的事务传播机制为我们提供了优雅的解决方案,本文将带您深入理解这一机制,掌握不同场景下的最佳实践,感兴趣的朋友一起看看吧... 目录1. 什么是事务传播行为2. Spring支持的七种事务传播行为2.1 REQUIRED(默认)2.2 SUPPORTS2