用法:
skimage.transform.frt2(a)
计算 n x n 整数数组的二维有限氡变换 (FRT)。
- a:array_like
一个二维正方形 n x n 整数数组。
- FRT:二维数组
(n+1) x n 整数系数的有限 Radon 变换数组。
参数:
返回:
注意:
当且仅当 n 是素数时,FRT 具有唯一的逆。 [FRT] 这个算法的想法归功于 Vlad Negnevitski。
参考:
- FRT
A. Kingston and I. Svalbe, “Projective transforms on periodic discrete image arrays,” in P. Hawkes (Ed), Advances in Imaging and Electron Physics, 139 (2006)
例子:
生成测试图像:对数组维度使用素数
>>> SIZE = 59 >>> img = np.tri(SIZE, dtype=np.int32)
应用有限氡变换:
>>> f = frt2(img)
相关用法
- Python skimage.transform.hough_circle_peaks用法及代码示例
- Python skimage.transform.hough_ellipse用法及代码示例
- Python skimage.transform.resize用法及代码示例
- Python skimage.transform.hough_line_peaks用法及代码示例
- Python skimage.transform.integrate用法及代码示例
- Python skimage.transform.estimate_transform用法及代码示例
- Python skimage.transform.hough_circle用法及代码示例
- Python skimage.transform.rotate用法及代码示例
- Python skimage.transform.rescale用法及代码示例
- Python skimage.transform.ifrt2用法及代码示例
- Python skimage.transform.resize_local_mean用法及代码示例
- Python skimage.transform.hough_line用法及代码示例
- Python skimage.transform.warp_polar用法及代码示例
- Python skimage.transform.warp_coords用法及代码示例
- Python skimage.transform.downscale_local_mean用法及代码示例
- Python skimage.transform.warp用法及代码示例
- Python skimage.feature.graycomatrix用法及代码示例
- Python skimage.color.lab2lch用法及代码示例
- Python skimage.draw.random_shapes用法及代码示例
- Python skimage.feature.blob_doh用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.transform.frt2。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。