ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Python Computer Vision Snippets

📸 Collection of Sublime Text snippets for computer vision and image processing in Python (Imports, OpenCV, Pillow)

Details

Installs

  • Total 701
  • Win 498
  • Mac 70
  • Linux 133
Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7 Nov 6 Nov 5 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
Windows 1 0 0 0 0 0 0 0 0 0 0 1 2 0 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 0 3 0 1 1 0 0 2 0 1 0 1 0 2 1
Mac 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0
Linux 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 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

📸 Python Computer Vision Snippets

Downloads Tag Repo size License

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.