Python计算机视觉代码片段
📸 Sublime Text的计算机视觉和图像处理Python代码片段收集(导入,OpenCV,Pillow)
详情
安装量
- 总数 624
- Win 444
- Mac 59
- Linux 121
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 1 | 1 | 1 | 1 | 1 | 3 | 0 | 0 | 1 | 1 | 0 | 2 | 0 | 0 |
Mac | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
自述文件
📸 Python计算机视觉代码片段
Python计算机视觉代码片段是Python中进行计算机视觉和图像处理的Sublime Text代码片段的集合。
💻 安装
安装Python计算机视觉代码片段最简单的方法是通过包控制。在Sublime Text内启用它后,打开命令面板并找到包控制:安装包并按ENTER
键。然后,在列表中找到Python计算机视觉代码片段。再次按ENTER
键,此包即可安装!
📈 代码片段
导入
导入代码片段以导入开始,跟随着包/模块的导入别名。
触发 | 描述 |
---|---|
icv2 |
import cv2 |
iImage |
from PIL import Image |
OpenCV
触发 | 描述 |
---|---|
circle |
cv2.circle |
cvtColor |
cv2.cvtColor |
destroyAllWindows |
cv2.destroyAllWindows |
imread |
cv2.imread |
imshow |
cv2.imshow |
imwrite |
cv2.imwrite |
line |
cv2.line |
putText |
cv2.putText |
rectangle |
cv2.rectangle |
resize |
cv2.resize |
rotate |
cv2.rotate |
VideoCapture |
cv2.VideoCapture |
waitKey |
cv2.waitKey |
Pillow
触发 | 描述 |
---|---|
convert |
Image.convert |
crop |
Image.crop |
fromarray |
PIL.Image.fromarray |
open |
PIL.Image.open |
resize |
Image.resize |
rotate |
Image.rotate |
保存 |
Image.save |