grid_to_graph#
- sklearn.feature_extraction.image.grid_to_graph(n_x, n_y, n_z=1, *, mask=None, return_as=<class 'scipy.sparse._coo.coo_matrix'>, dtype=<class 'int'>)#
图的像素到像素连接。
如果两个体素相连,则存在边。
- Parameters:
- n_xint
x轴的维度。
- n_yint
y轴的维度。
- n_zint, default=1
z轴的维度。
- maskndarray of shape (n_x, n_y, n_z), dtype=bool, default=None
图像的可选掩码,以仅考虑部分像素。
- return_asnp.ndarray 或稀疏矩阵类, default=sparse.coo_matrix
用于构建返回的邻接矩阵的类。
- dtypedtype, default=int
返回的稀疏矩阵的数据类型。默认是int。
- Returns:
- graphnp.ndarray 或稀疏矩阵类
计算的邻接矩阵。
Examples
>>> import numpy as np >>> from sklearn.feature_extraction.image import grid_to_graph >>> shape_img = (4, 4, 1) >>> mask = np.zeros(shape=shape_img, dtype=bool) >>> mask[[1, 2], [1, 2], :] = True >>> graph = grid_to_graph(*shape_img, mask=mask) >>> print(graph) (0, 0) 1 (1, 1) 1