python
hfliu25
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
how to unittest
转载自https://docs.python.org/3/library/unittest.html#unittest.TestCase.tearDown import unittest class 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 · 289 阅读 · 0 评论 -
使用skimage显示图片
使用skimage显示图片 安装skimage pip ininstall scikit-image 查看python目录 import os print(os.getcwd()) 输出结果C:\Users\E584767 把图片保存在该目录 本次测试把test.png保存在C:\Users\E584767 使用skimage显示图片 from skimage import io import matplotlib.pyplot as plt img=io.imread('test.png') io.im原创 2021-01-21 10:24:56 · 828 阅读 · 0 评论
分享