mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-14 11:18:06 +08:00
Added cvGetRectSubPix, cvGetQuadrangleSubPix, cvWarpAffine, cvWarpPerspective. As a byproduct added CvMat support.
10 lines
191 B
Python
10 lines
191 B
Python
import ctypes
|
|
import sys
|
|
|
|
# try to open the opencv libs
|
|
# prints a warning if the libs are not found
|
|
from _libimport import cv, cxcore
|
|
|
|
from opencv_constants import *
|
|
from opencv_cv import *
|