Skip to content

Instantly share code, notes, and snippets.

View yplam's full-sized avatar
🎯
Focusing

Bruce Lam yplam

🎯
Focusing
View GitHub Profile
@yplam
yplam / OpencvTemplateScaleMatch.py
Created June 2, 2017 09:48
Opencv Template Matching with template scale
import numpy as np
import cv2
import imutils
template = cv2.imread('template.jpg') # template image
image_o = cv2.imread('image.jpg') # image
template = cv2.cvtColor(template, cv2.COLOR_BGR2GRAY)
image = cv2.cvtColor(image_o, cv2.COLOR_BGR2GRAY)
@yplam
yplam / WeiXinResourceOwner.php
Created May 21, 2015 03:19
HWIOAuthBundle提供微信登录服务
<?php
/*
* Connect weixin with HWIOAuthBundle package.
*
* Yplam <yplam@yplam.com>
*
*/
namespace AppBundle\OAuth\ResourceOwner;