IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> java+opencv 图片边缘分割并保存文件 -> 正文阅读

[人工智能]java+opencv 图片边缘分割并保存文件

单色背景图片,在端侧java和opencv分割保存图片。

public static void drawRect(){//分割图片并保存
? ? ? ? // 1. 加载由libname参数指定的系统库
? ? ? ? System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
? ? ? ? // 2. 打开图片
? ? ? ? Mat src = Imgcodecs.imread(dirPath+"/1.jpg");
? ? ? ? if (src.dataAddr()==0){
? ? ? ? ? ? System.out.println("open file error!");
? ? ? ? }
? ? ? ? Mat mat = src;
? ? ? ? Imgcodecs.imwrite(dirPath+"/1-0.jpg", mat);
? ? ? ? //图片转换成灰度
? ? ? ? Imgproc.cvtColor(src, src, Imgproc.COLOR_BGR2GRAY,0);
? ? ? ? Imgcodecs.imwrite(dirPath+"/1-1.jpg", src);
? ? ? ? //高斯模糊
? ? ? ? Imgproc.GaussianBlur(src, src, new Size(15, 15), 0);
? ? ? ? Imgcodecs.imwrite(dirPath+"/1-2.jpg", src);
? ? ? ? //二值化操作
? ? ? ? Imgproc.threshold(src,src,0,255,THRESH_BINARY | THRESH_TRIANGLE);
? ? ? ? Imgcodecs.imwrite(dirPath+"/1-3.jpg", src);
? ? ? ? //轮廓发现--得到contours和hierarchy
? ? ? ? List<MatOfPoint> contours = new ArrayList<MatOfPoint>();
? ? ? ? Mat hierarchy = new Mat();
? ? ? ? Imgproc.findContours(src, contours, hierarchy, Imgproc.RETR_TREE, CHAIN_APPROX_SIMPLE, new Point(-1, -1));
? ? ? ? Imgcodecs.imwrite(dirPath+"/1-4.jpg", hierarchy);

? ? ? ? //相当于创建和原图尺寸相同一张黑色的图,用于后面画线作图
? ? ? ? Mat contoursImg = Mat.zeros(mat.size(), CV_8UC3);

? ? ? ? for(int i=0;i<contours.size();i++){
? ? ? ? ? ? Rect rect = boundingRect(contours.get(i));//rect.x y height width
// ? ? ? ? ? ?if (rect.width < mat.cols() / 2)
// ? ? ? ? ? ? ? ?continue;
? ? ? ? ? ? //在contoursImg上绘制最大的轮廓
? ? ? ? ? ? Imgproc.drawContours(contoursImg,contours,i, new Scalar(0,0,255),
? ? ? ? ? ? ? ? ? ? 2,8,hierarchy,0,new Point(0, 0));
? ? ? ? ? ? double area = contourArea(contours.get(i));
? ? ? ? ? ? System.out.println("The "+i+"img area is "+area);
? ? ? ? }
? ? ? ? Imgcodecs.imwrite(dirPath+"/1-5.jpg", contoursImg);

? ? ? ? Mat rectImg = Imgcodecs.imread(dirPath+"/1.jpg");//边缘分割 矩形
? ? ? ? for(int i=0;i<contours.size();i++){
? ? ? ? ? ? Rect rect = boundingRect(contours.get(i));//rect.x y height width
// ? ? ? ? ? ?if (rect.width < mat.cols() / 2)
// ? ? ? ? ? ? ? ?continue;
? ? ? ? ? ? Imgproc.rectangle (//画矩形
? ? ? ? ? ? ? ? ? ? rectImg, //Matrix obj of the image
? ? ? ? ? ? ? ? ? ? new Point(rect.x, rect.y), //p1
? ? ? ? ? ? ? ? ? ? new Point(rect.x+rect.width, rect.y+rect.height), //p2
? ? ? ? ? ? ? ? ? ? new Scalar(0, 0, 255), //Scalar object for color
? ? ? ? ? ? ? ? ? ? 2 //Thickness of the line
? ? ? ? ? ? );
? ? ? ? }
? ? ? ? Imgcodecs.imwrite(dirPath+"/1-6.jpg", rectImg);

? ? ? ? Mat bImg = Imgcodecs.imread(dirPath+"/1.jpg");//边缘分割保存文件
? ? ? ? for(int i=0;i<contours.size();i++){
? ? ? ? ? ? Rect recta = boundingRect(contours.get(i));//rect.x y height width
? ? ? ? ? ? if(recta.x<0){
? ? ? ? ? ? ? ? recta.x = 0;
? ? ? ? ? ? }
? ? ? ? ? ? if(recta.y<0){
? ? ? ? ? ? ? ? recta.y = 0;
? ? ? ? ? ? }
? ? ? ? ? ? Rect roi = new Rect(recta.x,recta.y,recta.width,recta.height);
? ? ? ? ? ? //System.out.println("The img area is "+recta.x+","+recta.y+","+recta.width+","+recta.height);
? ? ? ? ? ? Mat dst = new Mat(bImg,roi);
? ? ? ? ? ? Imgcodecs.imwrite(dirPath+"/2-"+i+".jpg", dst);
? ? ? ? }
? ? }

图片用tflite模型进行分类识别。

?pip install?tflite-model-maker

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2022-03-08 22:28:33  更:2022-03-08 22:32:31 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 17:48:40-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码