用法:
skimage.feature.haar_like_feature_coord(width, height, feature_type=None)
计算Haar-like 特征的坐标。
- width:int
检测窗口的宽度。
- height:int
检测窗口的高度。
- feature_type:str 或 str 列表或无,可选
要考虑的特征类型:
- ‘type-2-x’:沿 x 轴变化的 2 个矩形;
- ‘type-2-y’:沿 y 轴变化的 2 个矩形;
- ‘type-3-x’:沿 x 轴变化的 3 个矩形;
- ‘type-3-y’:沿 y 轴变化的 3 个矩形;
- ‘type-4’:沿 x 和 y 轴变化的 4 个矩形。
默认情况下,所有特征都被提取。
- feature_coord:(n_features, n_rectangles, 2, 2), 元组坐标列表的 ndarray
每个特征的矩形坐标。
- feature_type:(n_features,), str 的 ndarray
每个特征对应的类型。
参数:
返回:
例子:
>>> import numpy as np >>> from skimage.transform import integral_image >>> from skimage.feature import haar_like_feature_coord >>> feat_coord, feat_type = haar_like_feature_coord(2, 2, 'type-4') >>> feat_coord array([ list([[(0, 0), (0, 0)], [(0, 1), (0, 1)], [(1, 1), (1, 1)], [(1, 0), (1, 0)]])], dtype=object) >>> feat_type array(['type-4'], dtype=object)
相关用法
- Python skimage.feature.haar_like_feature用法及代码示例
- Python skimage.feature.hessian_matrix用法及代码示例
- Python skimage.feature.hessian_matrix_eigvals用法及代码示例
- Python skimage.feature.graycomatrix用法及代码示例
- Python skimage.feature.blob_doh用法及代码示例
- Python skimage.feature.blob_dog用法及代码示例
- Python skimage.feature.graycoprops用法及代码示例
- Python skimage.feature.corner_orientations用法及代码示例
- Python skimage.feature.structure_tensor用法及代码示例
- Python skimage.feature.ORB用法及代码示例
- Python skimage.feature.corner_subpix用法及代码示例
- Python skimage.feature.canny用法及代码示例
- Python skimage.feature.peak_local_max用法及代码示例
- Python skimage.feature.CENSURE用法及代码示例
- Python skimage.feature.corner_foerstner用法及代码示例
- Python skimage.feature.corner_harris用法及代码示例
- Python skimage.feature.corner_fast用法及代码示例
- Python skimage.feature.BRIEF用法及代码示例
- Python skimage.feature.SIFT用法及代码示例
- Python skimage.feature.structure_tensor_eigvals用法及代码示例
注:本文由纯净天空筛选整理自scikit-image.org大神的英文原创作品 skimage.feature.haar_like_feature_coord。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。