mirror of
https://github.com/wassname/scikit-image.git
synced 2026-07-13 17:45:20 +08:00
1e1958b414
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 *
|