Skip to content

Instantly share code, notes, and snippets.

View Rutulpatel7077's full-sized avatar
:octocat:
Never Give up 💪

Rutul Patel Rutulpatel7077

:octocat:
Never Give up 💪
View GitHub Profile
@Rutulpatel7077
Rutulpatel7077 / combine.py
Created July 18, 2018 15:36 — forked from glombard/combine.py
Merging 4 images into one with Python and PIL/Pillow
# Combine multiple images into one.
#
# To install the Pillow module on Mac OS X:
#
# $ xcode-select --install
# $ brew install libtiff libjpeg webp little-cms2
# $ pip install Pillow
#
from __future__ import print_function
@Rutulpatel7077
Rutulpatel7077 / MacOS_Install_OpenCV.py
Created February 9, 2018 21:00 — forked from vishwanath79/MacOS_Install_OpenCV.py
Install OpenCV on Mac OS Sierra on Python 3.5
# 1. Download and install the latest Anaconda distribution from https://www.continuum.io/downloads#macos
# 2. Create a new Python environment. Make sure you choose python 3.5 as your python version for the virtual environment:
conda create -n myenv python=3.5
# 3. Activate the new environment using:
source activate myenv