OPENCV+JAVA实现人脸识别

2025-05-29 0 98

本文实例为大家分享了JAVA实现人脸识别的具体代码,供大家参考,具体内容如下

官方下载 安装文件 ,以win7为例,下载opencv-2.4.13.3-vc14.exe
安装后,在build目录下 D:\\opencv\\build\\java,获取opencv-2413.jar,copy至项目目录
同时需要dll文件 与 各 识别xml文件,进行不同特征的识别(人脸,侧脸,眼睛等)
dll目录:D:\\opencv\\build\\java\\x64\\opencv_java2413.dll
xml目录:D:\\opencv\\sources\\data\\haarcascades\\haarcascade_frontalface_alt.xml(目录中有各类识别文件)

项目结构:

OPENCV+JAVA实现人脸识别

具体代码:由于需要用到 opencv 的dll文件,故要么放在java library path 中,或放在jre lib 中,windows下可放在System32目录下,也可以在代码中动态加载,如下:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

88

89

90

91

92

93

94

95

96

97

98

99

100

101

102

103

104

105

106

107

108

109

110

111

112

113

114

115

116

117

118

119

120

121

122

123

124

125

126

127

128

129

130

131

132

133

134

135

136

137

138

139

140

141

142

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245
package opencv;

import com.sun.scenario.effect.ImageData;

import org.opencv.core.*;

import org.opencv.core.Point;

import org.opencv.highgui.Highgui;

import org.opencv.imgproc.Imgproc;

import org.opencv.objdetect.CascadeClassifier;

import javax.imageio.ImageIO;

import javax.swing.*;

import java.awt.*;

import java.awt.image.BufferedImage;

import java.io.File;

import java.io.IOException;

import java.util.Arrays;

import java.util.Vector;

/**

* Created by Administrator on 2017/8/17.

*/

public class Test {

static{

// 导入opencv的库

String opencvpath = System.getProperty("user.dir") + "\\\\opencv\\\\x64\\\\";

String libPath = System.getProperty("java.library.path");

String a = opencvpath + Core.NATIVE_LIBRARY_NAME + ".dll";

System.load(opencvpath + Core.NATIVE_LIBRARY_NAME + ".dll");

}

public static String getCutPath(String filePath){

String[] splitPath = filePath.split("\\\\.");

return splitPath[0]+"Cut"+"."+splitPath[1];

}

public static void process(String original,String target) throws Exception {

String originalCut = getCutPath(original);

String targetCut = getCutPath(target);

if(detectFace(original,originalCut) && detectFace(target,targetCut)){

}

}

public static boolean detectFace(String imagePath,String outFile) throws Exception

{

System.out.println("\\nRunning DetectFaceDemo");

// 从配置文件lbpcascade_frontalface.xml中创建一个人脸识别器,该文件位于opencv安装目录中

CascadeClassifier faceDetector = new CascadeClassifier(

"C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\haarcascade_frontalface_alt.xml");

Mat image = Highgui.imread(imagePath);

// 在图片中检测人脸

MatOfRect faceDetections = new MatOfRect();

faceDetector.detectMultiScale(image, faceDetections);

System.out.println(String.format("Detected %s faces",

faceDetections.toArray().length));

Rect[] rects = faceDetections.toArray();

if(rects != null && rects.length > 1){

throw new RuntimeException("超过一个脸");

}

// 在每一个识别出来的人脸周围画出一个方框

Rect rect = rects[0];

Core.rectangle(image, new Point(rect.x-2, rect.y-2), new Point(rect.x

+ rect.width, rect.y + rect.height), new Scalar(0, 255, 0));

Mat sub = image.submat(rect);

Mat mat = new Mat();

Size size = new Size(300, 300);

Imgproc.resize(sub, mat, size);//将人脸进行截图并保存

return Highgui.imwrite(outFile, mat);

// 将结果保存到文件

// String filename = "C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\faceDetection.png";

// System.out.println(String.format("Writing %s", filename));

// Highgui.imwrite(filename, image);

}

public static void setAlpha(String imagePath,String outFile) {

/**

* 增加测试项

* 读取图片,绘制成半透明

*/

try {

ImageIcon imageIcon = new ImageIcon(imagePath);

BufferedImage bufferedImage = new BufferedImage(imageIcon.getIconWidth(),imageIcon.getIconHeight()

, BufferedImage.TYPE_4BYTE_ABGR);

Graphics2D g2D = (Graphics2D) bufferedImage.getGraphics();

g2D.drawImage(imageIcon.getImage(), 0, 0,

imageIcon.getImageObserver());

//循环每一个像素点,改变像素点的Alpha值

int alpha = 100;

for (int j1 = bufferedImage.getMinY(); j1 < bufferedImage.getHeight(); j1++) {

for (int j2 = bufferedImage.getMinX(); j2 < bufferedImage.getWidth(); j2++) {

int rgb = bufferedImage.getRGB(j2, j1);

rgb = ( (alpha + 1) << 24) | (rgb & 0x00ffffff);

bufferedImage.setRGB(j2, j1, rgb);

}

}

g2D.drawImage(bufferedImage, 0, 0, imageIcon.getImageObserver());

//生成图片为PNG

ImageIO.write(bufferedImage, "png", new File(outFile));

}

catch (Exception e) {

e.printStackTrace();

}

}

private static void watermark(String a,String b,String outFile, float alpha) throws IOException {

// 获取底图

BufferedImage buffImg = ImageIO.read(new File(a));

// 获取层图

BufferedImage waterImg = ImageIO.read(new File(b));

// 创建Graphics2D对象,用在底图对象上绘图

Graphics2D g2d = buffImg.createGraphics();

int waterImgWidth = waterImg.getWidth();// 获取层图的宽度

int waterImgHeight = waterImg.getHeight();// 获取层图的高度

// 在图形和图像中实现混合和透明效果

g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_ATOP, alpha));

// 绘制

g2d.drawImage(waterImg, 0, 0, waterImgWidth, waterImgHeight, null);

g2d.dispose();// 释放图形上下文使用的系统资源

//生成图片为PNG

ImageIO.write(buffImg, "png", new File(outFile));

}

public static boolean mergeSimple(BufferedImage image1, BufferedImage image2, int posw, int posh, File fileOutput) {

//合并两个图像

int w1 = image1.getWidth();

int h1 = image1.getHeight();

int w2 = image2.getWidth();

int h2 = image2.getHeight();

BufferedImage imageSaved = new BufferedImage(w1, h1, BufferedImage.TYPE_INT_ARGB);

Graphics2D g2d = imageSaved.createGraphics();

// 增加下面代码使得背景透明

g2d.drawImage(image1, null, 0, 0);

image1 = g2d.getDeviceConfiguration().createCompatibleImage(w1, w2, Transparency.TRANSLUCENT);

g2d.dispose();

g2d = image1.createGraphics();

// 背景透明代码结束

// for (int i = 0; i < w2; i++) {

// for (int j = 0; j < h2; j++) {

// int rgb1 = image1.getRGB(i + posw, j + posh);

// int rgb2 = image2.getRGB(i, j);

//

// if (rgb1 != rgb2) {

// //rgb2 = rgb1 & rgb2;

// }

// imageSaved.setRGB(i + posw, j + posh, rgb2);

// }

// }

boolean b = false;

try {

b = ImageIO.write(imageSaved, "png", fileOutput);

} catch (IOException ie) {

ie.printStackTrace();

}

return b;

}

public static void main(String[] args) throws Exception {

String a,b,c,d;

a = "C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\zzl.jpg";

d = "C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\cgx.jpg";

//process(a,d);

a = "C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\zzlCut.jpg";

d = "C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\cgxCut.jpg";

CascadeClassifier faceDetector = new CascadeClassifier(

"C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\haarcascade_frontalface_alt.xml");

CascadeClassifier eyeDetector1 = new CascadeClassifier(

"C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\haarcascade_eye.xml");

CascadeClassifier eyeDetector2 = new CascadeClassifier(

"C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\haarcascade_eye_tree_eyeglasses.xml");

Mat image = Highgui.imread("C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\gakki.jpg");

// 在图片中检测人脸

MatOfRect faceDetections = new MatOfRect();

//eyeDetector2.detectMultiScale(image, faceDetections);

Vector<Rect> objects;

eyeDetector1.detectMultiScale(image, faceDetections, 2.0,1,1,new Size(20,20),new Size(20,20));

Rect[] rects = faceDetections.toArray();

Rect eyea,eyeb;

eyea = rects[0];eyeb = rects[1];

System.out.println("a-中心坐标 " + eyea.x + " and " + eyea.y);

System.out.println("b-中心坐标 " + eyeb.x + " and " + eyeb.y);

//获取两个人眼的角度

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 rect:faceDetections.toArray()) {

Core.rectangle(image, new Point(rect.x, rect.y), new Point(rect.x

+ rect.width, rect.y + rect.height), new Scalar(0, 255, 0));

}

String filename = "C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\ouput.png";

System.out.println(String.format("Writing %s", filename));

Highgui.imwrite(filename, image);

// watermark(a,d,"C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\zzlTm2.jpg",0.7f);

//

// // 读取图像,不改变图像的原始信息

// Mat image1 = Highgui.imread(a);

// Mat image2 = Highgui.imread(d);

// Mat mat1 = new Mat();Mat mat2 = new Mat();

// Size size = new Size(300, 300);

// Imgproc.resize(image1, mat1, size);

// Imgproc.resize(image2, mat2, size);

// Mat mat3 = new Mat(size,CvType.CV_64F);

// //Core.addWeighted(mat1, 0.5, mat2, 1, 0, mat3);

//

// //Highgui.imwrite("C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\add.jpg", mat3);

//

// mergeSimple(ImageIO.read(new File(a)),

// ImageIO.read(new File(d)),0,0,

// new File("C:\\\\Users\\\\Administrator\\\\Desktop\\\\opencv\\\\add.jpg"));

}

}

最终效果:人脸旁有绿色边框,可以将绿色边框图片截取,生成人脸图

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持快网idc。

原文链接:http://blog.csdn.net/z69183787/article/details/77334829

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 OPENCV+JAVA实现人脸识别 https://www.kuaiidc.com/112958.html

相关文章

发表评论
暂无评论