JAVA Opencv在图片上添加中文

问题描述:

将图片进行均值、中值、高斯滤波,高斯边缘检测,并在图片上添加中文文字。
在这里插入图片描述

一、算法思想

  1. 首先经过opencv的一系列操作,例如高斯模糊、均值模糊等操作后、用Imgcodecs.imwrite方法将图片写出到指定的位置。
  2. 再利用java的图片添加文字的方法实现。
  3. 再读取输出。

二、代码解析

进行均值模糊

均值滤波原理

/**
* void blur(InputArray src, OutputArray dst, Size ksize, 
* 			Point anchor=Point(-1,-1), int borderType=BORDER_DEFAULT )
* src:输入图像
* dst:输出图像
* ksize:均值滤波器模板大小
* anchor:锚点,如果为Point(-1,-1),则锚点是滤波器的中心点
* borderType:边缘点插值类型
* */
Imgproc.blur(src, gry, new Size(4, 4));

在这里插入图片描述

实现中值模糊

中值滤波原理

/**
* void medianBlur(InputArray src, OutputArray dst, int ksize)
* src:输入图像
* dst:输出图像
* ksize:均值滤波器模板大小,因为模板为正方形,所以只有一个参数。
* */
Imgproc.medianBlur(src,dst,5);

在这里插入图片描述

实现高斯滤波

高斯滤波原理

/**
* void GaussianBlur(InputArray src, OutputArray dst, Size ksize, 
* 					double sigmaX, double sigmaY=0, int borderType=BORDER_DEFAULT ) ;
* src:输入图像
* dst:输出图像
* ksize:高斯滤波器模板大小,ksize的宽和高必须是奇数
* sigmaX:高斯滤波在横线的滤波系数
* sigmaY:高斯滤波在竖向的滤波系数
* 如果参数sigmaX=sigmaY=0,则实际用的是公式sigma = 0.3*((ksize-1)*0.5 - 1) + 0.8 
* borderType:边界的处理方式,一般默认
* */
Imgproc.GaussianBlur(dst, gry, new Size(7,7), 2, 2);

在这里插入图片描述

高斯边缘检测

Laplacian函数
convertScaleAbs()使用详解

/**
* void Laplacian(InputArray src, OutputArray dst, int depth, int ksize=1, 
* 					double scale=1, double delta=0, int borderType=BORDER_DEFAULT )
* src:输入图像
* dst:输出图像
* depth:表示输出图像的深度
* ksize:表示拉普拉斯核的大小,1表示核的大小是三
* scale:表示是否对图像进行放大或者缩小 
* delta:表示是否在输出的像素中加上一个量
* borderType:表示处理边界的方式,一般默认
* */
/**
* depth 图像元素的位深度,可以是下面的其中之一:
*         位深度                                                                   取值范围
*IPL_DEPTH_8U - 无符号8位整型                                     0--255
*IPL_DEPTH_8S - 有符号8位整型                                  -128--127
*IPL_DEPTH_16U - 无符号16位整型                              0--65535
*IPL_DEPTH_16S - 有符号16位整型                           -32768--32767
*IPL_DEPTH_32S - 有符号32位整型                               0--65535
*IPL_DEPTH_32F - 单精度浮点数                                     0.0--1.0
*IPL_DEPTH_64F - 双精度浮点数                                      0.0--1.0
* */
/**
* void convertScaleAbs(InputArray src, OutputArray dst, double alpha = 1, double beta = 0);
* src:输入数组
* dst:输出数组
* alpha:乘数因子
* beta:偏移量
* */
Imgproc.GaussianBlur(src, dst, new Size(3,3), 0);//高斯滤波
Imgproc.cvtColor(dst,dst,Imgproc.COLOR_RGB2GRAY);//进行图像彩色空间转换,转换为灰度图
Imgproc.Laplacian(dst, gry, CvType.CV_16S, 3, 5, 0, Core.BORDER_DEFAULT);
Core.convertScaleAbs(gry,dst,3,5);

在这里插入图片描述

图片的文字写入

图片写入报错解决

public class AlterIimage {public static boolean createStringMark(String filePath,String markContent,String outPath) { ImageIcon imgIcon=new ImageIcon(filePath); Image theImg =imgIcon.getImage(); int width=theImg.getWidth(null)==-1?200:theImg.getWidth(null); int height= theImg.getHeight(null)==-1?200:theImg.getHeight(null); 
//	System.out.println(width);
//	System.out.println(height);
//	System.out.println(theImg);BufferedImage bimage = new BufferedImage(width,height, BufferedImage.TYPE_INT_RGB); //将一副图片加载到内存中Graphics2D g=bimage.createGraphics(); //创建一个指定 BufferedImage 的 Graphics2D 对象Color mycolor = Color.GREEN; g.setColor(mycolor); g.setBackground(Color.GREEN); g.drawImage(theImg, 0, 0, null ); g.setFont(new Font("宋体",Font.PLAIN,20)); //字体、字型、字号 g.drawString(markContent,20,25); //画文字 g.dispose(); try { FileOutputStream out=new FileOutputStream(outPath); //先用一个特定的输出文件名 /*** Eclipse默认把这些受访问限制的API设成了ERROR。只要把Windows-Preferences-Java-Complicer-Errors/Warnings* 里面的Deprecated and restricted API中的Forbidden references(access rules)选为Warning就可以编译通过。* */JPEGImageEncoder encoder =JPEGCodec.createJPEGEncoder(out); JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bimage); param.setQuality(100, true);encoder.encode(bimage, param);out.close(); } catch(Exception e) { return false; } return true; }
}

最后结果展示

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/543892.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

手机站点击商务通无轨迹解决方法

手机站点击商务通咨询按钮是很多时候会出现后台无法统计到访客的浏览轨迹的情况&#xff0c;这种情况是因为部分手机浏览器打开新的页面不传递来路页面地址信息所导致的。下面为大家介绍一种能解决这一情况的方法&#xff1a; 代码如下&#xff1a; <script type"text/…

检查Python中是否存在文件

An ability to check if the file exists or not, is very crucial in any application. Often, the applications perform verifications like, 在任何应用程序中&#xff0c;检查文件是否存在的能力至关重要。 通常&#xff0c;应用程序会执行验证&#xff0c;例如&#xff0…

双向tvs和单向tvs_TVS的完整形式是什么?

双向tvs和单向tvsTVS&#xff1a;Thirukkurungudi Vengaram Sundram (TVS: Thirukkurungudi Vengaram Sundram) TVS is an abbreviation of Thirukkurungudi Vengaram Sundram. It is a multinational motorcycle business corporation, which is one of the largest manufactu…

使用系统的CoreLocation定位

//// ViewController.m// LBS//// Created by tonnyhuang on 15/8/28.// Copyright (c) 2015年 tonnyhuang. All rights reserved.//#import "ViewController.h"#import <CoreLocation/CoreLocation.h>//首先&#xff0c;我们需要在工程中导入CoreLocation…

cisc 和 risc_RISC和CISC | 电脑组织

cisc 和 risc1)复杂指令集架构(CISC) (1) Complex Instruction Set Architecture (CISC)) The basic idea behind is to make hardware complex as a single instruction will do all the operation such as loading, evaluating and storing operations just like a division …

黑五已火 电商跨境成燎原之势

我国有着众多的电商&#xff0c;这些电商为了促进消费总是想出千奇百怪的营销节日&#xff0c;比如年中大促、双十一、双十二、年终大促&#xff0c;在今年更是多出了6.18促销、双十萌节&#xff0c;还有一个慢慢火起来的“黑五”。“黑五”与之前提到的众多营销节日有所不同&a…

dir函数_PHP dir()函数与示例

dir函数PHP dir()函数 (PHP dir() function) dir() function is an instance of the directory class, it is used to read the directory, it includes handle and path properties – which can be used to get the resource id and path to the directory. Both handle and …

引用头文件报错 .pch引用不了其他的.h文件

2019独角兽企业重金招聘Python工程师标准>>> 一、编绎显示Unknown type name “CGFloat” 错误解决方法 将Compile Sources As 改为 Objective-C 二、如果是extern const引起的。直接加头文件 #import <UIKit/UIKit.h> 最后在 .h文件 #import <UIKit/UIK…

ibm mq的交互命令模式_IBM的完整形式是什么?

ibm mq的交互命令模式IBM&#xff1a;国际商业机器 (IBM: International Business Machines) IBM is an abbreviation of International Business Machines. It is an I.T based multinational and consulting corporation which is also an American trusted brand in the IT …

iptables 状态策略 允许内网连接外网 拒绝外网主动连入内网 _ 笔记

4种状态newestablishedrelatedinvalidNEW ( a连接b 在b没有回复前 都被称为NEW包)ESTABLISHED ( a和b 连接成功 只有一个连接时 称为ESTABLISHED状态 )a和b一旦连接看到两个方向上都有通信流&#xff0c;与此附加相关的其它包都被看作处于 ESTABLISHED 状态RELATED ( a和b 连接…

r软件说明lib文件未指明_软件说明文件

r软件说明lib文件未指明The software primarily consists of Computer Programs and the associated documentation. We all know that the computer program is the baseline of the entire software, but the documentation part is also as important as the programming pa…

NSTimer详解

1、初始化 (NSTimer *)timerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector userInfo:(id)userInfo repeats:(BOOL)yesOrNo; (NSTimer *)scheduledTimerWithTimeInterval:(NSTimeInterval)ti target:(id)aTarget selector:(SEL)aSelector us…

linux cnc_CNC的完整形式是什么?

linux cncCNC&#xff1a;计算机数控 (CNC: Computerized Numerical Control) CNC is an abbreviation of Computerized Numerical Control. It is an automated controlling system with which digital electronic computers are used to control, automate, and monitor the …

dfa与ndfa_DFA和NDFA之间的区别| 目录

dfa与ndfaDFA stands for Deterministic Finite Automata and NDFA stands for Non-Deterministic Finite Automata. DFA代表确定性有限自动机&#xff0c;而NDFA代表非确定性有限自动机。 Read more: Deterministic Finite Automata (DFA) 阅读更多&#xff1a; 确定性有限自…

css圆角三角形3个圆角_CSS中的圆角

css圆角三角形3个圆角CSS | 圆角 (CSS | Rounded Corners) border-radius property is commonly used to convert box elements into circles. We can convert box elements into the circle element by setting the border-radius to half of the length of a square element.…

数据库范式5nf_第四范式(4NF)| 数据库管理系统

数据库范式5nfFourth normal form (4NF) is a normal form used in database normalization, in which there are no non-trivial multivalued dependencies except a candidate key. After Boyce–Codd normal form (BCNF), 4NF is the next level of normalization. Although…

da---tlc5615._CD-DA的完整形式是什么?

da---tlc5615.CD-DA&#xff1a;光盘数字音频 (CD-DA: Compact Disc Digital Audio) CD-DA is an abbreviation of "Compact Disc Digital Audio". CD-DA是“光盘数字音频”的缩写 。 It is also known as Audio CD, is the established conventional format for au…

iti axi dsp_ITI的完整形式是什么?

iti axi dspITI&#xff1a;工业培训学院 (ITI: Industrial Training Institute) ITI is an abbreviation of the Industrial Training Institute. It offers training in engineering and non-engineering technical fields. It is a post-secondary school in India which is…

文本分析工具 数据科学_数据科学工具

文本分析工具 数据科学The Data Scientist is the "Sexiest job of 21 Century", by Harvard Business Review, however, what specifically will a data Scientist do, what tools do they use? 数据科学家是《哈佛商业评论》(Harvard Business Review)所说的“ 21…

appweb ejs_具有快速路线的EJS

appweb ejsHI! Welcome to NODE AND EJS TEMPLATE ENGINE SERIES. Today, we will see how we can work with EJS and routes? 嗨&#xff01; 欢迎使用NODE和EJS模板引擎系列 。 今天&#xff0c;我们将看到如何使用EJS和路由&#xff1f; A route is like a sub domain wit…