sklearn.feature_extraction.reconstruct_from_patches_2d

sklearn.feature_extraction.image.reconstruct_from_patches_2d(patches, image_size)

[源码]

从所有的斑块重建图像。

假设斑块重叠,从左到右,从上到下对斑块进行填充,对重叠区域进行平均,构建图像。

用户指南中阅读更多内容。

参数 说明
patches ndarray of shape (n_patches, patch_height, patch_width) or (n_patches, patch_height, patch_width, n_channels)
补丁的完整集。如果贴片包含颜色信息,通道将沿着最后一个维度进行索引:RGB贴片的n_channels=3
image_size tuple of int (image_height, image_width) or (image_height, image_width, n_channels)
将要重建的图像的大小。
返回值 说明
image ndarray of shape image_size
重建图像。

示例sklearn.feature_extraction.image.reconstruct_from_patches_2d