Python Computer Vision Snippets
📸 Collection of Sublime Text snippets for computer vision and image processing in Python (Imports, OpenCV, Pillow)
Details
Installs
- Total 225
- Win 161
- Mac 21
- Linux 43
Jun 10 | Jun 9 | Jun 8 | Jun 7 | Jun 6 | Jun 5 | Jun 4 | Jun 3 | Jun 2 | Jun 1 | May 31 | May 30 | May 29 | May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 1 | 0 | 0 | 2 | 2 | 0 | 0 | 0 | 3 | 1 | 1 | 1 | 0 | 1 | 2 | 1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 0 | 0 | 0 | 1 |
Mac | 0 | 0 | 0 | 1 | 2 | 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 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
📸 Python Computer Vision Snippets
Python Computer Vision Snippets is a collection of Sublime Text snippets for computer vision and image processing in Python.
💻 Installation
The easiest way to install Python Computer Vision Snippets is through Package Control. After it is enabled inside Sublime Text, open the command palette and find Package Control: Install Package and press ENTER
. Then, find Python Computer Vision Snippets in the list. Press ENTER
again, and this package is installed!
📈 Snippets
Imports
Import snippets start with i
followed by the package/module's import alias.
Trigger | Description |
---|---|
icv2 |
import cv2 |
iImage |
from PIL import Image |
OpenCV
Trigger | Description |
---|---|
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
Trigger | Description |
---|---|
convert |
Image.convert |
crop |
Image.crop |
fromarray |
PIL.Image.fromarray |
open |
PIL.Image.open |
resize |
Image.resize |
rotate |
Image.rotate |
save |
Image.save |
The snippet files are in the snippets
folder of this GitHub repository.