摘要: Now that we've talked about sample prep, let's talk about imaging. Now that we've talked about sample prep, let's talk about imaging. Now that we've t 阅读全文
posted @ 2019-10-01 21:41 Raymone1125 阅读(437) 评论(1) 推荐(0) 编辑
摘要: conda: 以管理员身份启动Anaconda Prompt: 升级conda(升级Anaconda前需要先升级conda):conda update conda 升级anaconda:conda update anaconda 升级spyder:conda update spyder更新所有包:c 阅读全文
posted @ 2019-09-24 21:07 Raymone1125 阅读(4610) 评论(0) 推荐(0) 编辑
摘要: 在终端输入: 1。正常不需要前面写个python,但是cv2的库需要我们自己去导入,要给他一个环境变量的指明 2. 文件要和脚本放到同一文件夹或给它正确的路径 脚本代码如下: 阅读全文
posted @ 2019-09-21 13:15 Raymone1125 阅读(221) 评论(0) 推荐(0) 编辑
摘要: #Author:zhanghaonan import cv2 as cv import numpy as np from matplotlib import pyplot as plt import matplotlib.image as mpimg def GaussianLowFilter(image,d): f = np.fft.fft2(image) fshift = ... 阅读全文
posted @ 2019-09-21 11:01 Raymone1125 阅读(223) 评论(0) 推荐(0) 编辑
摘要: At the top of the electron microscope is the electron gun. As we've discussed it has a filament and then what's often called the Wehnelt cylinder. And 阅读全文
posted @ 2019-09-11 16:29 Raymone1125 阅读(1938) 评论(0) 推荐(0) 编辑
摘要: The essential property of a lens is that it bends radiation to focus it. So, if we were to draw that, here's a lens. And what that means is that radia 阅读全文
posted @ 2019-09-09 16:04 Raymone1125 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 电子枪其实非常接近于一条弯曲的线, 所以我在最上方画一条弯曲的线。 0:15 在这条弯曲的线里,有电流通过。 [点击声为噪音] 这些绿色的条纹代表电子, [点击声为噪音] 当电流通过这条线时, 有部分电子从尖端逸出, 就像这样跑了出来。 打个比方,这个过程有点像是 水顺流而下那样。 在水顺流而下的过 阅读全文
posted @ 2019-09-09 13:15 Raymone1125 阅读(518) 评论(0) 推荐(0) 编辑
摘要: 这些问题 为什么选择电子显微镜: 那么,让我们谈谈:为什么要用电子呢? 如果我们想要造一台显微镜,可选的放射线有很多种, 每种都有它自己的优势和劣势。 您首先想到的,可能是可见光, 可见光有它的优势。 首先,它破坏力不大, 显然我们每天都生活在可见光下。 利用光学显微镜来观察细胞, 经过好几分钟以后 阅读全文
posted @ 2019-09-09 10:25 Raymone1125 阅读(333) 评论(0) 推荐(0) 编辑
摘要: 写在前面fit和transform没有任何关系,仅仅是数据处理的两个不同环节,之所以出来fit_transform这个函数名,仅仅是为了写代码方便,会高效一点。 sklearn里的封装好的各种算法使用前都要fit,fit相对于整个代码而言,为后续API服务。fit之后,然后调用各种API方法,tra 阅读全文
posted @ 2019-09-06 15:51 Raymone1125 阅读(1981) 评论(0) 推荐(2) 编辑
摘要: 图像是由像素点组成的矩阵,矩阵的每个点记录着图像的RGB值。数字图像处理即根据用户需求,使用计算机技术对图像进行处理得到所需效果。 1.采样 我们获取到的图像一般为模拟图像,要让计算机进行处理需将其数字化,采样的作用就是将模拟图像转变为数字图像。一般来说,采样间隔越大,所得图像像素数越少,空间分辨率 阅读全文
posted @ 2019-09-04 15:24 Raymone1125 阅读(2050) 评论(0) 推荐(0) 编辑