python
hfliu25
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
how to unittest
转载自https://docs.python.org/3/library/unittest.html#unittest.TestCase.tearDownimport unittestclass Widget: name = '' length = 100 height = 200 def __init__(self, n): self.name = n def size(self): print("size")转载 2021-03-16 15:27:54 · 166 阅读 · 0 评论 -
python call c++
转载https://www.geeksforgeeks.org/how-to-call-c-c-from-python/转载 2021-03-16 15:21:53 · 290 阅读 · 0 评论 -
使用skimage显示图片
使用skimage显示图片安装skimagepip ininstall scikit-image查看python目录import osprint(os.getcwd())输出结果C:\Users\E584767把图片保存在该目录本次测试把test.png保存在C:\Users\E584767使用skimage显示图片from skimage import ioimport matplotlib.pyplot as pltimg=io.imread('test.png')io.im原创 2021-01-21 10:24:56 · 828 阅读 · 0 评论
分享