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

相关文章

Spring Security常见问题及解决方案

《SpringSecurity常见问题及解决方案》SpringSecurity是Spring生态的安全框架,提供认证、授权及攻击防护,支持JWT、OAuth2集成,适用于保护Spring应用,需配置... 目录Spring Security 简介Spring Security 核心概念1. ​Securit

postgresql使用UUID函数的方法

《postgresql使用UUID函数的方法》本文给大家介绍postgresql使用UUID函数的方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录PostgreSQL有两种生成uuid的方法。可以先通过sql查看是否已安装扩展函数,和可以安装的扩展函数

Python实现终端清屏的几种方式详解

《Python实现终端清屏的几种方式详解》在使用Python进行终端交互式编程时,我们经常需要清空当前终端屏幕的内容,本文为大家整理了几种常见的实现方法,有需要的小伙伴可以参考下... 目录方法一:使用 `os` 模块调用系统命令方法二:使用 `subprocess` 模块执行命令方法三:打印多个换行符模拟

SpringBoot+EasyPOI轻松实现Excel和Word导出PDF

《SpringBoot+EasyPOI轻松实现Excel和Word导出PDF》在企业级开发中,将Excel和Word文档导出为PDF是常见需求,本文将结合​​EasyPOI和​​Aspose系列工具实... 目录一、环境准备与依赖配置1.1 方案选型1.2 依赖配置(商业库方案)二、Excel 导出 PDF

Python实现MQTT通信的示例代码

《Python实现MQTT通信的示例代码》本文主要介绍了Python实现MQTT通信的示例代码,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一... 目录1. 安装paho-mqtt库‌2. 搭建MQTT代理服务器(Broker)‌‌3. pytho

SpringBoot改造MCP服务器的详细说明(StreamableHTTP 类型)

《SpringBoot改造MCP服务器的详细说明(StreamableHTTP类型)》本文介绍了SpringBoot如何实现MCPStreamableHTTP服务器,并且使用CherryStudio... 目录SpringBoot改造MCP服务器(StreamableHTTP)1 项目说明2 使用说明2.1

spring中的@MapperScan注解属性解析

《spring中的@MapperScan注解属性解析》@MapperScan是Spring集成MyBatis时自动扫描Mapper接口的注解,简化配置并支持多数据源,通过属性控制扫描路径和过滤条件,利... 目录一、核心功能与作用二、注解属性解析三、底层实现原理四、使用场景与最佳实践五、注意事项与常见问题六

Spring的RedisTemplate的json反序列泛型丢失问题解决

《Spring的RedisTemplate的json反序列泛型丢失问题解决》本文主要介绍了SpringRedisTemplate中使用JSON序列化时泛型信息丢失的问题及其提出三种解决方案,可以根据性... 目录背景解决方案方案一方案二方案三总结背景在使用RedisTemplate操作redis时我们针对

Java中Arrays类和Collections类常用方法示例详解

《Java中Arrays类和Collections类常用方法示例详解》本文总结了Java中Arrays和Collections类的常用方法,涵盖数组填充、排序、搜索、复制、列表转换等操作,帮助开发者高... 目录Arrays.fill()相关用法Arrays.toString()Arrays.sort()A

Spring Boot Maven 插件如何构建可执行 JAR 的核心配置

《SpringBootMaven插件如何构建可执行JAR的核心配置》SpringBoot核心Maven插件,用于生成可执行JAR/WAR,内置服务器简化部署,支持热部署、多环境配置及依赖管理... 目录前言一、插件的核心功能与目标1.1 插件的定位1.2 插件的 Goals(目标)1.3 插件定位1.4 核