Python Computer Vision Snippets
📸 Collection of Sublime Text snippets for computer vision and image processing in Python (Imports, OpenCV, Pillow)
Details
Installs
- Total 861
 - Win 601
 - Mac 91
 - Linux 169
 
| Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 2 | 2 | 0 | 1 | 0 | 0 | 0 | 2 | 2 | 1 | 0 | 0 | 0 | 1 | 
| Mac | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 
| Linux | 0 | 0 | 1 | 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 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 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.