python
文章平均质量分 75
jinhuazhe2013
穷且益坚,不坠青云之志……
展开
-
[python]利用神经网络算法去除照片中的背景
在github寻找了一圈,终于发现了一个比较新且好用的开源项目rembg(地址https://github.com/danielgatis/rembg)。结合rembg和PixelLib可以得到非常好的效果。原创 2021-11-22 11:11:23 · 2726 阅读 · 0 评论 -
ubuntu python环境检查
EnvironmentUbuntu 14.04 with Xenial kernel 4.4.0 genericAnaconda, Python 3.7Tried C++ 4.9, 5.5, 7, 9CUDA 10.1, cdnn 7.5.6Please copy and paste the output from ourenvironment collection script(or fill out the checklist below manually).You can get th原创 2021-11-18 11:51:19 · 2087 阅读 · 0 评论 -
[opencv-python]学习-图像分割
使用 OpenCV 函数 cv::filter2D 执行一些拉普拉斯滤波以进行图像锐化使用 OpenCV 函数 cv::distanceTransform 以获得二值图像的派生(derived)表示,其中每个像素的值被替换为其到最近背景像素的距离使用 OpenCV 函数 cv::watershed 将图像中的对象与背景隔离from __future__ import print_functionimport cv2 as cvimport numpy as npimport argparsei原创 2021-11-16 15:18:50 · 6596 阅读 · 3 评论 -
[opencv-python]学习-图像修复
你们中的大多数人家里都会有一些退化的旧照片,上面有一些黑点、一些笔触等。你有没有想过把它恢复回来?我们不能简单地在绘画工具中擦除它们,因为它只会用无用的白色结构替换黑色结构。在这些情况下,使用称为图像修复的技术。基本思想很简单:用相邻像素替换那些坏标记,使其看起来像邻域。为此设计了几种算法,OpenCV 提供了其中的两种。两者都可以通过同一个函数cv2.inpaint() 访问第一个算法基于论文“An Image Inpainting Technique Based on the Fast Marchi原创 2021-11-05 14:15:08 · 2768 阅读 · 0 评论 -
[opencv-python]学习-图像处理
图像处理150多种颜色空间中,我们常用的有BGR,Gray和HSV。BGR <–> Gray and BGR <–> HSV.opencv 里使用cv2.cvtColor(input_image, flag) 来进行转换, flag 表示转换类型。cv2.COLOR_BGR2GRAY. BGR <–> Graycv2.COLOR_BGR2HSV. BGR <–> HSV查看所有类型:flags = [i for i in dir(cv2原创 2021-11-04 16:24:19 · 1853 阅读 · 0 评论 -
[opencv-python]学习基础操作-通道分离和图片合成等
基本操作img = cv2.imread('../img/meinv.png')print(img)px = img[100, 100]print(px)#像素 BGR(Blue, Green, Red values) [157 166 200]print(px)# accessing only blue pixelblue = img[100, 100, 0]print(blue)# accessing RED valueprint(img.item(10, 10, 2))#原创 2021-11-03 17:12:00 · 1093 阅读 · 0 评论 -
图像处理+深度学习 入门学习
天津理工大学(https://www.bilibili.com/video/BV1tx41147Tx):用C++实现(非调包),讲课比较生动,比较全面,很多实验课;中科院(https://www.bilibili.com/video/BV1Xb411U79J):主要是用matlab编程,非常全面,有很多地方点到,但不深入,有些章节难度较大;《数字图像处理》冈萨雷斯(https://book.douban.com/subject/6434627/):本方向的权威教材,内容很全,直接看比较枯燥,对初学者不.转载 2021-11-03 11:26:07 · 541 阅读 · 0 评论 -
【转】python编写并打包PC桌面应用
作者:Ampofo Amoh - Gyebi(Dec 12, 2020 · 12 )Search the entire internet for uses of the Python programming language and they list them with Desktop Applications marked as not very suited with python. But years ago in 2016 when I was hoping to move on from w转载 2021-10-12 16:11:44 · 731 阅读 · 0 评论 -
ipython notebook 如何打开.ipynb文件?
打开.ipynb文件1.首先要下载python,设置环境变量2.下载pip,设置环境变量3.打开命令行,进入到python的Scripts文件中,按顺序执行下面三个命令pip install ipythonpip install “ipython[notebook]” ipython notebook作者:叶昭链接:https://www.zhihu.com/question/45...转载 2019-10-25 10:54:03 · 348 阅读 · 0 评论 -
python 包 or 环境(python2 or python3?)管理
Conda和pip通常被认为几乎完全相同。虽然这两个工具的某些功能重叠,但它们设计用于不同的目的。 Pip是Python Packaging Authority推荐的用于从Python Package Index安装包的工具。 Pip安装打包为wheels或源代码分发的Python软件。后者可能要求系统安装兼容的编译器和库。Conda是跨平台的包和环境管理器,可以安装和管理来自Anaconda ...原创 2019-07-17 11:33:30 · 261 阅读 · 0 评论 -
Python Packaging User Guide
This section covers the basics of how to install Python packages.It’s important to note that the term “package” in this context is being used as a synonym for a distribution (i.e. a bundle of softwar...转载 2019-07-10 14:21:39 · 181 阅读 · 0 评论