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 小米 华为 单反 装机 图拉丁
 
   -> 人工智能 -> 得到PCB板子的背景区域 -> 正文阅读

[人工智能]得到PCB板子的背景区域

原图:

使用floodfill得到预处理的区域

??????????????

?最后得到PCB板的区域

"""
 -*- coding: utf-8 -*-
 author: Hao Hu
 @date   2022/4/5 8:43 PM
"""
import cv2
import numpy as np

import os
import os.path as osp
import sys
import multiprocessing as mp

import numpy as np
import cv2
import matplotlib.pyplot as plt
from glob import glob

def resize_img():
    img = cv2.imread('/Users/huhao/Downloads/Template_img/Template_CAD/0261P4L64392A0_L2-20211122_10954B.png')
    img = cv2.resize(img, (int(img.shape[0] / 20), int(img.shape[1] / 20)), cv2.INTER_NEAREST)
    cv2.imwrite('/Users/huhao/Documents/GitHub/real-time-semantic-segmentation/PCB/scripts/use_mask_match/get_the_bg/test.jpg',img)


def reverse_image(image):
    where_0 = np.where(image == 0)
    where_255 = np.where(image == 255)
    image[where_0] = 255
    image[where_255] = 0
    return image

def delicate_img(image):
    """ 膨胀"""
    kernel = cv2.getStructuringElement(cv2.MORPH_RECT, (5, 5))
    expand_pic = cv2.dilate(image, kernel)
    return expand_pic

def erode_img(image):
    """腐蚀"""
    corrosion_img = cv2.getStructuringElement(cv2.MORPH_CROSS, (2, 2))  ##腐蚀预处理,确定处理核的大小,矩阵操作
    image = cv2.erode(image, corrosion_img, iterations=10)  # 进行腐蚀操作
    return image


def get_box(im):
    t = 40
    epsilon = 100
    img_b = im[:, :, 0]
    img_g = im[:, :, 1]
    img_r = im[:, :, 2]
    _, mask_b = cv2.threshold(img_b, t, 255, 1)
    _, mask_g = cv2.threshold(img_g, t, 255, 1)
    _, mask_r = cv2.threshold(img_r, t, 255, 1)
    mask = cv2.bitwise_not(cv2.bitwise_and(cv2.bitwise_and(mask_b, mask_g), mask_r))
    contours, _ = cv2.findContours(mask, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
    contours = list(contours)
    contours.sort(key=lambda x: cv2.contourArea(x), reverse=True)
    cnt = cv2.approxPolyDP(contours[0], epsilon=epsilon, closed=True)
    cnt = cv2.minAreaRect(cnt)
    box = np.int0(cv2.boxPoints(cnt))
    return mask, box



def get_the_preprocess_img(image):

    #image_reverse = reverse_image(image)
    deli_image = delicate_img(image)
    _, box = get_box(deli_image)

    background = np.zeros((image.shape[0], image.shape[1], 3), dtype="uint8")
    re = cv2.drawContours(background, [box], 0, (255, 255, 255), -1)
    cv2.imshow("img", re)
    cv2.waitKey(0)
    return box


def fill_color_demo(img_path):
    """使用floodfill将图片最外边的白色区域涂成黑色"""
    image = cv2.imread(img_path)
    h, w = image.shape[:2]
    #mask = np.zeros([h , w ], np.uint8)
    # 为什么要加2可以这么理解:当从0行0列开始泛洪填充扫描时,mask多出来的2可以保证扫描的边界上的像素都会被处理
    mask = np.zeros([h + 2, w + 2], np.uint8)  # mask必须行和列都加2,且必须为uint8单通道阵列
    # 为什么要加2可以这么理解:当从0行0列开始泛洪填充扫描时,mask多出来的2可以保证扫描的边界上的像素都会被处理
    cv2.floodFill(image, mask, (0, 0), (0, 0, 0), (100, 100, 100), (50, 50, 50), cv2.FLOODFILL_FIXED_RANGE)

    # cv2.imshow("img", image)
    # cv2.waitKey(0)
    return image




if __name__ == '__main__':
    img_path = '/Users/huhao/Documents/GitHub/real-time-semantic-segmentation/PCB/scripts/use_mask_match/get_the_bg/test.jpg'
    #box = get_the_preprocess_img(img_path)

    image = fill_color_demo(img_path)
    
    box = get_the_preprocess_img(image)



???????

  人工智能 最新文章
2022吴恩达机器学习课程——第二课(神经网
第十五章 规则学习
FixMatch: Simplifying Semi-Supervised Le
数据挖掘Java——Kmeans算法的实现
大脑皮层的分割方法
【翻译】GPT-3是如何工作的
论文笔记:TEACHTEXT: CrossModal Generaliz
python从零学(六)
详解Python 3.x 导入(import)
【答读者问27】backtrader不支持最新版本的
上一篇文章      下一篇文章      查看所有文章
加:2022-04-07 22:41:41  更:2022-04-07 22:44:59 
 
开发: 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 12:01:43-

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