


This article mainly introduces you to the detailed tutorial of installing Anaconda and python on Windows. It is very good and has reference value. Friends who need it can refer to it
When it comes to digital image processing programming, most people may I think of matlab, but matlab also has its own shortcomings:
1. It is not open source and expensive.
2. The software capacity is large. Generally, it is 3G or above, and higher versions can even reach 5G or above.
3. It can only be used for research and is not easy to convert into software.
Therefore, we use the Python scripting language here for digital image processing.
To use Python, you must first install python, usually version 2.7 or above. Whether it is a Windows system or a Linux system, the installation is very simple.
To use python for various development and scientific calculations, you also need to install the corresponding packages. This is very similar to matlab, except that it is called a toolbox in matlab, and it is called a library or package in python. There are actually many digital image processing packages developed based on python scripting language, such as PIL, Pillow, OpenCV, scikit-image, etc.
Comparing these packages, PIL and Pillow only provide the most basic digital image processing, with limited functions; OpenCV is actually a C++ library that only provides a python interface, and the update speed is very slow. Up to now, python has developed to version 3.5, while opencv only supports version 2.7 of python; scikit-image is an image processing package based on scipy. It processes images as numpy arrays, just like matlab. Therefore, we finally chose scikit-image performs digital image processing.
1. Required installation packages
Because scikit-image is based on scipy for calculations, it is certain to install numpy and scipy. To display images, you also need to install the matplotlib package. To sum up, the required packages are:
Python >= 2.6 Numpy >= 1.6.1 Cython >= 0.21 Six >=1.4 SciPy >=0.9 Matplotlib >= 1.1.0 NetworkX >= 1.8 Pillow >= 1.7.8 dask[array] >= 0.5.0
Comparatively, it is very troublesome to install, especially scipy, which is basically impossible to install on Windows.
But don’t be afraid, we just need to choose an integrated installation environment. We recommend Anaconda. It integrates all the above required packages, so we actually only need to install it from beginning to end. Anaconda software is enough, nothing else needs to be installed.
2. Download and install anaconda
First go to www.continuum.io/downloads to download anaconda. The current version is python2 .7 version and python3.5 version, download the corresponding version and anaconda of the corresponding system. It is actually an sh script file, about 280M.
This series takes windows7+python3.5 as an example, so we download the version in the red box as shown below:
The name is: Anaconda3-2.4. 1-Windows-x86_64.exe
is an executable exe file. Once the download is complete, you can install it by double-clicking it.
When installing, assume that we install in the root directory of drive D, such as:
and select both options and write the installation path Enter environment variables.
Then just wait for the installation to complete.
After the installation is completed, open the windows command prompt:
Enter conda list to check which libraries are currently installed. The commonly used numpy and scipy are among them. If you have any packages that have not been installed, you can run
conda install *** to install them. (*** is the name of the required package)
If a package version is not the latest, run conda update *** to update it.
3. Simple test
anaconda comes with an editor spyder, we can use this editor to write code in the future .
Spyder.exe is placed in the scripts in the installation directory. For example, mine is D:/Anaconda3/scripts/spyder.exe. Just double-click it to run it. We can right-click and send to desktop shortcut, which will be more convenient to run in the future.
We simply write a program to test whether the installation is successful. This program is used to open a picture and display it. First prepare a picture, then open spyder and write the following code:
from skimage import io img=io.imread('d:/dog.jpg') io.imshow(img)
Change d:/dog.jpg to your picture location
Then click the green in the toolbar above Triangle is run, and finally
# is displayed. If the "Ipython console" in the lower right corner can display a picture, it means that our running environment is successfully installed.
We can select "variable explorer" in the upper right corner to view image information, such as
We can save this program, pay attention to the python script file The suffix is py.
4. Submodule of skimage package
skimage包的全称是scikit-image SciKit (toolkit for SciPy) ,它对scipy.ndimage进行了扩展,提供了更多的图片处理功能。它是由python语言编写的,由scipy 社区开发和维护。skimage包由许多的子模块组成,各个子模块提供不同的功能。主要子模块列表如下:
子模块名称 | 主要实现功能 |
io | 读取、保存和显示图片或视频 |
data | 提供一些测试图片和样本数据 |
color | 颜色空间变换 |
filters | 图像增强、边缘检测、排序滤波器、自动阈值等 |
draw | 操作于numpy数组上的基本图形绘制,包括线条、矩形、圆和文本等 |
transform | 几何变换或其它变换,如旋转、拉伸和拉东变换等 |
morphology | 形态学操作,如开闭运算、骨架提取等 |
exposure | 图片强度调整,如亮度调整、直方图均衡等 |
feature | 特征检测与提取等 |
measure | 图像属性的测量,如相似性或等高线等 |
segmentation | 图像分割 |
restoration | 图像恢复 |
util | 通用函数 |
用到一些图片处理的操作函数时,需要导入对应的子模块,如果需要导入多个子模块,则用逗号隔开,如:
from skimage import io,data,color
The above is the detailed content of Detailed explanation of installation examples of Anaconda and python on windows. For more information, please follow other related articles on the PHP Chinese website!

c盘的users是用户文件夹,主要存放用户的各项配置文件。users文件夹是windows系统的重要文件夹,不能随意删除;它保存了很多用户信息,一旦删除会造成数据丢失,严重的话会导致系统无法启动。

启动任务管理器的三个快捷键是:1、“Ctrl+Shift+Esc”,可直接打开任务管理器;2、“Ctrl+Alt+Delete”,会进入“安全选项”的锁定界面,选择“任务管理器”,即可以打开任务管理器;3、“Win+R”,会打开“运行”窗口,输入“taskmgr”命令,点击“确定”即可调出任务管理器。

PIN码是Windows系统为了方便用户本地登录而独立于window账户密码的快捷登录密码,是Windows系统新添加的一套本地密码策略;在用户登陆了Microsoft账户后就可以设置PIN来代替账户密码,不仅提高安全性,而且也可以让很多和账户相关的操作变得更加方便。PIN码只能通过本机登录,无法远程使用,所以不用担心PIN码被盗。

对于刚刚开始使用PHP的用户来说,如果在Windows操作系统中遇到了“php不是内部或外部命令”的问题,可能会感到困惑。这个错误通常是由于系统无法识别PHP的路径导致的。在本文中,我将为您提供一些可能会导致这个问题的原因和解决方法,以帮助您快速解决这个问题。

win10自带的onenote是UWP版本;onenote是一套用于自由形式的信息获取以及多用户协作工具,而UWP版本是“Universal Windows Platform”的简称,表示windows通用应用平台,不是为特定的终端设计的,而是针对使用windows系统的各种平台。

windows操作系统的特点包括:1、图形界面;直观高效的面向对象的图形用户界面,易学易用。2、多任务;允许用户同时运行多个应用程序,或在一个程序中同时做几件事情。3、即插即用。4、出色的多媒体功能。5、对内存的自动化管理。

因为win10系统是不自带扫雷游戏的,需要用户自行手动安装。安装步骤:1、点击打开“开始菜单”;2、在打开的菜单中,找到“Microsoft Store”应用商店,并点击进入;3、在应用商店主页的搜索框中,搜索“minesweeper”;4、在搜索结果中,点击选择需要下载的“扫雷”游戏;5、点击“获取”按钮,等待获取完毕后自动完成安装游戏即可。

在windows中鼠标指针呈四箭头时一般表示选中对象可以上、下、左、右移动。在Windows中鼠标指针首次用不同的指针来表示不同的状态,如系统忙、移动中、拖放中;在Windows中使用的鼠标指针文件还被称为“光标文件”或“动态光标文件”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment
