Import fast homography as transform.fast_homography.

This commit is contained in:
Stefan van der Walt
2011-09-25 17:37:04 -07:00
parent 2b71fd9a0e
commit 3df7df263e
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -1,4 +1,5 @@
from .hough_transform import *
from .finite_radon_transform import *
from .project import *
from ._project import homography as fast_homography
from .integral import *
@@ -1,8 +1,8 @@
import numpy as np
from numpy.testing import assert_array_almost_equal
from scikits.image.transform.project import _stackcopy, homography
from scikits.image.transform._project import homography as fast_homography
from scikits.image.transform.project import _stackcopy
from scikits.image.transform import homography, fast_homography
from scikits.image import data
def test_stackcopy():