Skip to content

Instantly share code, notes, and snippets.

View michaelfeng's full-sized avatar
💭
Be Happy~

michaelfeng michaelfeng

💭
Be Happy~
View GitHub Profile
@Munawwar
Munawwar / segmentation1.py
Created August 29, 2016 13:56
Background Removal with OpenCV - Attempt 1 (http://codepasta.com/site/vision/segmentation/)
import numpy as np
import cv2
def getSobel (channel):
sobelx = cv2.Sobel(channel, cv2.CV_16S, 1, 0, borderType=cv2.BORDER_REPLICATE)
sobely = cv2.Sobel(channel, cv2.CV_16S, 0, 1, borderType=cv2.BORDER_REPLICATE)
sobel = np.hypot(sobelx, sobely)
return sobel;