Module: transform
skimage.transform.downscale_local_mean (...) | Down-sample N-dimensional image by local averaging. |
skimage.transform.estimate_transform (ttype, ...) | Estimate 2D geometric transformation parameters. |
skimage.transform.frt2 (a) | Compute the 2-dimensional finite radon transform (FRT) for an n x n integer array. |
skimage.transform.hough_circle (image, radius) | Perform a circular Hough transform. |
skimage.transform.hough_ellipse (img[, ...]) | Perform an elliptical Hough transform. |
skimage.transform.hough_line (img[, theta]) | Perform a straight line Hough transform. |
skimage.transform.hough_line_peaks (hspace, ...) | Return peaks in hough transform. |
skimage.transform.ifrt2 (a) | Compute the 2-dimensional inverse finite radon transform (iFRT) for an (n+1) x n integer array. |
skimage.transform.integral_image (img) | Integral image / summed area table. |
skimage.transform.integrate (ii, start, end, ...) | Use an integral image to integrate over a given window. |
skimage.transform.iradon (radon_image[, ...]) | Inverse radon transform. |
skimage.transform.iradon_sart (radon_image[, ...]) | Inverse radon transform |
skimage.transform.matrix_transform (coords, ...) | Apply 2D matrix transform. |
skimage.transform.probabilistic_hough_line (img) | Return lines from a progressive probabilistic line Hough transform. |
skimage.transform.pyramid_expand (image[, ...]) | Upsample and then smooth image. |
skimage.transform.pyramid_gaussian (image[, ...]) | Yield images of the Gaussian pyramid formed by the input image. |
skimage.transform.pyramid_laplacian (image[, ...]) | Yield images of the laplacian pyramid formed by the input image. |
skimage.transform.pyramid_reduce (image[, ...]) | Smooth and then downsample image. |
skimage.transform.radon (image[, theta, circle]) | Calculates the radon transform of an image given specified projection angles. |
skimage.transform.rescale (image, scale[, ...]) | Scale image by a certain factor. |
skimage.transform.resize (image, output_shape) | Resize image to match a certain size. |
skimage.transform.rotate (image, angle[, ...]) | Rotate image by a certain angle around its center. |
skimage.transform.seam_carve (img, ...[, ...]) | Carve vertical or horizontal seams off an image. |
skimage.transform.swirl (image[, center, ...]) | Perform a swirl transformation. |
skimage.transform.warp (image[, inverse_map, ...]) | Warp an image according to a given coordinate transformation. |
skimage.transform.warp_coords (coord_map, shape) | Build the source coordinates for the output of a 2-D image warp. |
skimage.transform.AffineTransform ([matrix, ...]) | 2D affine transformation of the form: |
skimage.transform.PiecewiseAffineTransform () | 2D piecewise affine transformation. |
skimage.transform.PolynomialTransform ([params]) | 2D transformation of the form: |
skimage.transform.ProjectiveTransform ([matrix]) | Matrix transformation. |
skimage.transform.SimilarityTransform ([...]) | 2D similarity transformation of the form: |
Please login to continue.