鱼C论坛

 找回密码
 立即注册
查看: 1377|回复: 2

skimage库ImageCollection函数问题

[复制链接]
发表于 2020-8-10 15:33:44 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
from skimage import data_dir, io, transform, color, filters
import cv2 as cv
import numpy as np
import os


def convert_gray(f):
    rgb = io.imread(f)
    gray = cv.cvtColor(rgb, cv.COLOR_RGB2GRAY)
    ret, binary = cv.threshold(gray, 0, 255, cv.THRESH_BINARY|cv.THRESH_OTSU)
    # 大津法
    # binary = cv.adaptiveThreshold(gray, 255, cv.ADAPTIVE_THRESH_GAUSSIAN_C, cv.THRESH_BINARY_INV, 131, 0)
    # 自适应阈值
    return binary


str = r'F:\Study\ground fissure experiment\7.29\X5S\input\*.jpg'  # 源文件目录
path = r'F:\ground fissure experiment\7.28\XT2\Input'  # 源文件目录
# file_list = os.listdir(path)
path1 = r'F:\Study\ground fissure experiment\7.29\X5S\ostu'  # 输出文件目录
coll = io.ImageCollection(str, load_func=convert_gray)
print(len(coll))
# for i in range(len(coll)):
# #io.imsave(r'F:\Study\ground fissure experiment\7.29\X5S\ostu\ostu_' + np.str(i) + '.jpg', coll[i])

本来是批量生成大津法后的图片,Input文件里只有10张图像,coll里有20张不知道为啥,有一张是重复的,是代码哪里出问题了吗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-8-10 15:37:16 | 显示全部楼层
Input 和 output
1.PNG
2.PNG
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-12 13:01:46 | 显示全部楼层
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-19 11:16

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表