python_06

博客介绍了selenium的相关内容,包括剩余用法、万能登录破解、爬取京东商品信息以及破解极验滑动验证码等。还提及了Xpath语法,布置了总结知识点写博客、爬取京东商品信息和滑动验证等作业。

今日内容:
注意: selenium驱动的浏览器是干净的,没有任何缓存。

1、selenium剩余用法
2、selenium万能登录破解
3、selenium爬取京东商品信息
4、破解极验滑动验证码

Xpath语法:

今日作业:
1、总结课堂知识点,写博客
2、爬取京东商品信息
3、滑动验证(提高题)

一、自动登录抽屉新热榜

from selenium import webdriver
import time

driver = webdriver.Chrome(r'D:\BaiduNetdiskDownload\chromedriver_win32\chromedriver.exe')

# 把窗口转成全屏
driver.maximize_window()

try:
    driver.get('https://dig.chouti.com/')
    driver.implicitly_wait(10)
    time.sleep(5)

    # 1、点击登录
    login_btn = driver.find_element_by_id('login_btn')
    login_btn.click()
    time.sleep(2)

    # 2、输入用户名
    phone = driver.find_element_by_class_name('login-phone')
    phone.send_keys('15622792660')

    # 3、输入密码
    pwd = driver.find_element_by_class_name('pwd-password-input')
    pwd.send_keys('kermit46709394')

    # 4、确认登录
    login_submit = driver.find_element_by_class_name('btn-large')
    login_submit.click()

    time.sleep(20)

# 捕获异常并打印
except Exception as e:
    print(e)

finally:
    driver.close()

二、 selenium选择器之Xpath

from selenium import webdriver

driver = webdriver.Chrome(r'D:\BaiduNetdiskDownload\chromedriver_win32\chromedriver.exe')


try:
    # 隐式等待: 写在get请求前
    driver.implicitly_wait(5)

    driver.get('https://doc.scrapy.org/en/latest/_static/selectors-sample1.html')

    # 显式等待: 写在get请求后
    # wait.until(...)

    '''
    
<html>
 <head>
  <base href='http://example.com/' />
  <title>Example website</title>
 </head>
 <body>
  <div id='images'>
   <a href='image1.html'>Name: My image 1 <br /><img src='image1_thumb.jpg' /></a>
   <a href='image2.html'>Name: My image 2 <br /><img src='image2_thumb.jpg' /></a>
   <a href='image3.html'>Name: My image 3 <br /><img src='image3_thumb.jpg' /></a>
   <a href='image4.html'>Name: My image 4 <br /><img src='image4_thumb.jpg' /></a>
   <a href='image5.html'>Name: My image 5 <br /><img src='image5_thumb.jpg' /></a>
  </div>
 </body>
</html>
    '''
    # 根据xpath语法查找元素
    # / 从根节点开始找第一个
    html = driver.find_element_by_xpath('/html')
    # html = driver.find_element_by_xpath('/head')  # 报错
    print(html.tag_name)

    # // 从根节点开始找任意一个节点
    div = driver.find_element_by_xpath('//div')
    print(div.tag_name)

    # @
    # 查找id为images的div节点
    div = driver.find_element_by_xpath('//div[@id="images"]')
    print(div.tag_name)
    print(div.text)

    # 找到第一个a节点
    a = driver.find_element_by_xpath('//a')
    print(a.tag_name)

    # 找到所有a节点
    a_s = driver.find_elements_by_xpath('//a')
    print(a_s)

    # 找到第一个a节点的href属性
    # get_attribute:获取节点中某个属性
    a = driver.find_element_by_xpath('//a').get_attribute('href')
    print(a)

finally:
    driver.close()

三、selenium剩余操作

''''''
'''
点击、清除操作
'''
# from selenium import webdriver
# from selenium.webdriver.common.keys import Keys
# import time
#
# driver = webdriver.Chrome(r'D:\BaiduNetdiskDownload\chromedriver_win32\chromedriver.exe')
#
# try:
#     driver.implicitly_wait(10)
#     # 1、往jd发送请求
#     driver.get('https://www.jd.com/')
#     # 找到输入框输入围城
#     input_tag = driver.find_element_by_id('key')
#     input_tag.send_keys('围城')
#     # 键盘回车
#     input_tag.send_keys(Keys.ENTER)
#     time.sleep(2)
#     # 找到输入框输入墨菲定律
#     input_tag = driver.find_element_by_id('key')
#     input_tag.clear()
#     input_tag.send_keys('墨菲定律')
#     # 找到搜索按钮点击搜索
#     button = driver.find_element_by_class_name('button')
#     button.click()
#     time.sleep(10)
#
# finally:
#     driver.close()


'''
获取cookies  (了解)
'''
# from selenium import webdriver
# import time
#
# driver = webdriver.Chrome(r'D:\BaiduNetdiskDownload\chromedriver_win32\chromedriver.exe')
#
# try:
#     driver.implicitly_wait(10)
#     driver.get('https://www.zhihu.com/explore')
#     print(driver.get_cookies())
#
#     time.sleep(10)
# finally:
#     driver.close()

'''
选项卡
'''
#选项卡管理:切换选项卡,有js的方式windows.open,有windows快捷键:
# ctrl+t等,最通用的就是js的方式
# import time
# from selenium import webdriver
#
# browser = webdriver.Chrome()
# try:
#     browser.get('https://www.baidu.com')
#
#     # execute_script: 执行javascrpit代码
#     # 弹窗操作
#     # browser.execute_script('alert("tank")')
#     # 新建浏览器窗口
#     browser.execute_script(
#         '''
#         window.open();
#         '''
#     )
#     time.sleep(1)
#     print(browser.window_handles)  # 获取所有的选项卡
#     # 切换到第二个窗口
#     # 新:
#     browser.switch_to.window(browser.window_handles[1])
#     # 旧:
#     # browser.switch_to_window(browser.window_handles[1])
#
#     # 第二个窗口往淘宝发送请求
#     browser.get('https://www.taobao.com')
#     time.sleep(5)
#
#     # 切换到第一个窗口
#     browser.switch_to_window(browser.window_handles[0])
#     browser.get('https://www.sina.com.cn')
#
#     time.sleep(10)
# finally:
#     browser.close()


'''
ActionChangs动作链
'''
# from selenium import webdriver
# from selenium.webdriver import ActionChains
# import time
#
# driver = webdriver.Chrome()
# driver.implicitly_wait(10)
# driver.get('http://www.runoob.com/try/try.php?filename=jqueryui-api-droppable')
#
# try:
#
#     # driver.switch_to_frame('iframeResult')
#     # 切换到id为iframeResult的窗口内
#     driver.switch_to.frame('iframeResult')
#
#     # 源位置
#     draggable = driver.find_element_by_id('draggable')
#
#     # 目标位置
#     droppable = driver.find_element_by_id('droppable')
#
#     # 调用ActionChains,必须把驱动对象传进去
#     # 得到一个动作链对象,复制给一个变量
#     actions = ActionChains(driver)
#
#     # 方式一: 机器人
#     # 瞬间把源图片位置秒移到目标图片位置
#     # actions.drag_and_drop(draggable, droppable)  # 编写一个行为
#     # actions.perform()  # 执行编写好的行为
#
#
#     # 方式二: 模拟人的行为
#     source = draggable.location['x']
#     target = droppable.location['x']
#     print(source, target)
#
#     distance = target - source
#     print(distance)
#
#     # perform:每个动作都要调用perform执行
#
#     # 点击并摁住源图片
#     ActionChains(driver).click_and_hold(draggable).perform()
#
#     s = 0
#     while s < distance:
#         # 执行位移操作
#         ActionChains(driver).move_by_offset(xoffset=2, yoffset=0).perform()
#         s += 2
#
#     # 释放动作链
#     ActionChains(driver).release().perform()
#
#     time.sleep(10)
#
#
# finally:
#     driver.close()


'''
前进、后退
'''
# from selenium import webdriver
# import time
#
# driver = webdriver.Chrome()
#
# try:
#     driver.implicitly_wait(10)
#     driver.get('https://www.jd.com/')
#     driver.get('https://www.baidu.com/')
#     driver.get('https://www.cnblogs.com/')
#
#     time.sleep(2)
#
#     # 回退操作
#     driver.back()
#     time.sleep(1)
#     # 前进操作
#     driver.forward()
#     time.sleep(1)
#     driver.back()
#     time.sleep(10)
#
# finally:
#     driver.close()

四、破解登录

from selenium import webdriver
from selenium.webdriver import ChromeOptions
import time
r'''
步骤:
    1、打开文件的查看,显示隐藏文件
    2、找到C:\Users\administortra\AppData\Local\Google\Chrome\User Data
        删除Default文件
    3、重新打开浏览器,并登陆百度账号
        - 此时会创建一个新的Default缓存文件
    4、添加cookies
    5、关闭谷歌浏览器后执行程序
'''
# 获取options对象,参数对象
options = ChromeOptions()

# 获取cookies保存路径
# 'C:\Users\administortra\AppData\Local\Google\Chrome\User Data'
profile_directory = r'--user-data-dir=C:\Users\administortra\AppData\Local\Google\Chrome\User Data'

# 添加用户信息目录
options.add_argument(profile_directory)

# 把参数加载到当前驱动中  chrome_options默认参数,用来接收options对象
driver = webdriver.Chrome(chrome_options=options)

try:
    driver.implicitly_wait(10)
    driver.get('https://www.baidu.com/')
    '''
    BDUSS:*****
    '''
    # 添加用户cookies信息
    # name、value必须小写
    driver.add_cookie({"name": "BDUSS", "value": "用户session字符串"})

    # 刷新操作
    driver.refresh()

    time.sleep(10)

finally:
    driver.close()

五、04 selenium爬取京东商品信息

# ''''''
# '''
# 爬取京东商品信息:
#     请求url:
#         https://www.jd.com/
#     提取商品信息:
#         1.商品详情页
#         2.商品名称
#         3.商品价格
#         4.评价人数
#         5.商品商家
# '''
# from selenium import webdriver
# from selenium.webdriver.common.keys import Keys
# import time
#
# driver = webdriver.Chrome()
#
# try:
#     driver.implicitly_wait(10)
#     # 1、往京东主页发送请求
#     driver.get('https://www.jd.com/')
#
#     # 2、输入商品名称,并回车搜索
#     input_tag = driver.find_element_by_id('key')
#     input_tag.send_keys('macbook')
#     input_tag.send_keys(Keys.ENTER)
#     time.sleep(2)
#
#     # 通过JS控制滚轮滑动获取所有商品信息
#     js_code = '''
#         window.scrollTo(0,5000);
#     '''
#     driver.execute_script(js_code)  # 执行js代码
#
#     # 等待数据加载
#     time.sleep(2)
#
#     # 3、查找所有商品div
#     # good_div = driver.find_element_by_id('J_goodsList')
#     good_list = driver.find_elements_by_class_name('gl-item')
#     n = 1
#     for good in good_list:
#         # 根据属性选择器查找
#         # 商品链接
#         good_url = good.find_element_by_css_selector(
#             '.p-img a').get_attribute('href')
#
#         # 商品名称
#         good_name = good.find_element_by_css_selector(
#             '.p-name em').text.replace("\n", "--")
#
#         # 商品价格
#         good_price = good.find_element_by_class_name(
#             'p-price').text.replace("\n", ":")
#
#         # 评价人数
#         good_commit = good.find_element_by_class_name(
#             'p-commit').text.replace("\n", " ")
#
#         # 商品商家
#         good_from = good.find_element_by_class_name(
#             'J_im_icon').text.replace("\n", " ")
#
#         good_content = f'''
#                     商品链接: {good_url}
#                     商品名称: {good_name}
#                     商品价格: {good_price}
#                     评价人数: {good_commit}
#                     商品商家: {good_from}
#                     \n
#                     '''
#         print(good_content)
#         with open('jd.txt', 'a', encoding='utf-8') as f:
#             f.write(good_content)
#
#     next_tag = driver.find_element_by_link_text('下一页')
#
#     next_tag.click()
#
#     time.sleep(10)
#
#
# finally:
#     driver.close()



''''''
'''
爬取京东商品信息:
    请求url:
        https://www.jd.com/
    提取商品信息:
        1.商品详情页
        2.商品名称
        3.商品价格
        4.评价人数
        5.商品商家
'''
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import time


def get_good(driver):
    try:

        # 通过JS控制滚轮滑动获取所有商品信息
        js_code = '''
            window.scrollTo(0,5000);
        '''
        driver.execute_script(js_code)  # 执行js代码

        # 等待数据加载
        time.sleep(2)

        # 3、查找所有商品div
        # good_div = driver.find_element_by_id('J_goodsList')
        good_list = driver.find_elements_by_class_name('gl-item')
        n = 1
        for good in good_list:
            # 根据属性选择器查找
            # 商品链接
            good_url = good.find_element_by_css_selector(
                '.p-img a').get_attribute('href')

            # 商品名称
            good_name = good.find_element_by_css_selector(
                '.p-name em').text.replace("\n", "--")

            # 商品价格
            good_price = good.find_element_by_class_name(
                'p-price').text.replace("\n", ":")

            # 评价人数
            good_commit = good.find_element_by_class_name(
                'p-commit').text.replace("\n", " ")

            good_content = f'''
                        商品链接: {good_url}
                        商品名称: {good_name}
                        商品价格: {good_price}
                        评价人数: {good_commit}
                        \n
                        '''
            print(good_content)
            with open('jd.txt', 'a', encoding='utf-8') as f:
                f.write(good_content)

        next_tag = driver.find_element_by_class_name('pn-next')
        next_tag.click()

        time.sleep(2)

        # 递归调用函数
        get_good(driver)

        time.sleep(10)

    finally:
        driver.close()


if __name__ == '__main__':

    good_name = input('请输入爬取商品信息:').strip()

    driver = webdriver.Chrome()
    driver.implicitly_wait(10)
    # 1、往京东主页发送请求
    driver.get('https://www.jd.com/')

    # 2、输入商品名称,并回车搜索
    input_tag = driver.find_element_by_id('key')
    input_tag.send_keys(good_name)
    input_tag.send_keys(Keys.ENTER)
    time.sleep(2)

    get_good(driver)

作业:破解极限滑动验证

''''''
'''
破解极验滑动验证
博客园登录url:
    https://account.cnblogs.com/signin?returnUrl=https%3A%2F%2Fwww.cnblogs.com%2F
1、输入用户名与密码,并点击登录
2、弹出滑动验证,获取有缺口与完整的图片
3、通过像素点进行比对,获取滑动位移距离
4、模拟人的行为轨迹
5、开始滑动
'''
from selenium import webdriver  # 用来驱动浏览器的
from selenium.webdriver import ActionChains  # 破解滑动验证码的时候用的 可以拖动图片
import time
from PIL import Image  # pip3 install pillow
import random

option = webdriver.ChromeOptions()
option.add_argument('disable-infobars')

driver = webdriver.Chrome(chrome_options=option)


def get_snap(driver):
    # selenium自带的截图网页全屏图片
    driver.save_screenshot('snap.png')

    img = driver.find_element_by_class_name('geetest_canvas_img')

    left = img.location['x']

    upper = img.location['y']

    right = left + img.size['width']
    lower = upper + img.size['height']

    # print(left, upper, right, lower)
    img_obj = Image.open('snap.png')

    # 对屏幕进行截取,获取滑动验证图片
    image = img_obj.crop((left, upper, right, lower))

    return image


def get_image1(driver):
    time.sleep(0.2)
    js_code = '''
    var x = document.getElementsByClassName('geetest_canvas_fullbg')[0].style.display="block";
    console.log(x)
    '''

    time.sleep(1)
    driver.execute_script(js_code)

    # 截取图片
    img_obj = get_snap(driver)

    return img_obj


def get_image2(driver):
    time.sleep(0.2)

    js_code = '''
    var x = document.getElementsByClassName('geetest_canvas_fullbg')[0].style.display="none";
    console.log(x)
    '''

    driver.execute_script(js_code)

    time.sleep(1)

    # 截取图片
    img_obj = get_snap(driver)

    return img_obj


def get_distance(image1, image2):
    # 初始值
    start = 60

    # 滑块色差
    color_num = 60

    for x in range(start, image1.size[0]):
        for y in range(image1.size[1]):

            rgb1 = image1.load()[x, y]

            rgb2 = image2.load()[x, y]

            r = abs(rgb1[0] - rgb2[0])
            g = abs(rgb1[1] - rgb2[1])
            b = abs(rgb1[2] - rgb2[2])

            if not (r < color_num and g < color_num and b < color_num):
                return x - 7


def get_stacks(distance):
    distance += 20

    '''
    匀加速\减速运行
        v = v0 + a * t

    位移:
    s = v * t + 0.5 * a * (t**2)
    '''

    # 初速度
    v0 = 0

    # 加减速度列表
    a_list = [3, 4, 5]

    # 时间
    t = 0.2

    # 初始位置
    s = 0

    # 向前滑动轨迹
    forward_stacks = []

    mid = distance * 3 / 5

    while s < distance:
        if s < mid:
            a = a_list[random.randint(0, 2)]

        else:
            a = -a_list[random.randint(0, 2)]

        v = v0

        stack = v * t + 0.5 * a * (t ** 2)

        # 每次拿到的位移
        stack = round(stack)

        s += stack

        v0 = v + a * t

        forward_stacks.append(stack)

    back_stacks = [-1, -1, -2, -3, -2, -3, -2, -2, -3, -1]

    return {'forward_stacks': forward_stacks, 'back_stacks': back_stacks}


def main():
    try:

        driver.get('https://passport.cnblogs.com/user/signin')
        driver.implicitly_wait(5)

        # 1.输入用户名与密码,点击登录
        username = driver.find_element_by_id('LoginName')
        password = driver.find_element_by_id('Password')
        login_button = driver.find_element_by_class_name('ladda-label')
        time.sleep(1)
        username.send_keys('_tank_')
        time.sleep(1)
        password.send_keys('k46709394.')

        # 这里需要等待账号密码输入完毕后再点击登录按钮,否则的不弹框
        time.sleep(1)
        login_button.click()
        # time.sleep(3)

        # 2.点击滑动验证按钮,获取图片
        geetest_button = driver.find_element_by_class_name('geetest_slider_button')
        geetest_button.click()

        time.sleep(0.2)

        # 3.针对完整的图片进行截取
        image1 = get_image1(driver)

        # 4.针对有缺口的图片进行截取
        image2 = get_image2(driver)

        # 5.对比两张图片,获取滑动距离
        distance = get_distance(image1, image2)

        # 6.模拟人为滑动轨迹
        stacks = get_stacks(distance)

        # 7.根据滑动轨迹进行滑动
        forward_stacks = stacks['forward_stacks']
        back_stacks = stacks['back_stacks']

        slider_button = driver.find_element_by_class_name('geetest_slider_button')
        time.sleep(0.2)

        ActionChains(driver).click_and_hold(slider_button).perform()

        time.sleep(0.2)
        for forward_stack in forward_stacks:
            ActionChains(driver).move_by_offset(xoffset=forward_stack, yoffset=0).perform()
            time.sleep(0.1)
        for back_stack in back_stacks:
            ActionChains(driver).move_by_offset(xoffset=back_stack, yoffset=0).perform()
            time.sleep(0.1)

        time.sleep(0.2)

        ActionChains(driver).move_by_offset(xoffset=5, yoffset=0).perform()
        ActionChains(driver).move_by_offset(xoffset=-5, yoffset=0).perform()

        ActionChains(driver).release().perform()

        time.sleep(50)


    finally:
        driver.close()


if __name__ == '__main__':
    main()

 

转载于:https://www.cnblogs.com/zhanglei97/p/11049438.html

E:\Python_Project\ADD_NOISE\.venv\Scripts\python.exe E:\Python_Project\ADD_NOISE\main.py 开始处理目录: E:\Python_Project\ADD_NOISE\infrared multi 噪声参数: 均值=0, 标准差=6 输出目录: E:\Python_Project\ADD_NOISE\infrared_gray_noisy 添加高斯噪声: 0%| | 1/704 [00:00<02:29, 4.71it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\10.png 时出错: name 'stddev' is not defined 添加高斯噪声: 0%| | 3/704 [00:00<01:07, 10.34it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\11.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\12.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\13.png 时出错: name 'stddev' is not defined 添加高斯噪声: 1%| | 5/704 [00:00<00:52, 13.41it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\14.png 时出错: name 'stddev' is not defined 添加高斯噪声: 1%| | 7/704 [00:00<00:46, 14.88it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\15.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\16.png 时出错: name 'stddev' is not defined 添加高斯噪声: 1%|▏ | 9/704 [00:00<00:43, 15.93it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\17.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\18.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\19.png 时出错: name 'stddev' is not defined 添加高斯噪声: 2%|▏ | 11/704 [00:00<00:41, 16.53it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\2.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\20.png 时出错: name 'stddev' is not defined 添加高斯噪声: 2%|▏ | 13/704 [00:00<00:42, 16.20it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\21.png 时出错: name 'stddev' is not defined 添加高斯噪声: 2%|▏ | 15/704 [00:01<00:40, 16.98it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\22.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\3.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\4.png 时出错: name 'stddev' is not defined 添加高斯噪声: 2%|▏ | 17/704 [00:01<00:39, 17.51it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\5.png 时出错: name 'stddev' is not defined 添加高斯噪声: 3%|▎ | 19/704 [00:01<00:38, 17.65it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\6.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\7.png 时出错: name 'stddev' is not defined E:\Python_Project\ADD_NOISE\main.py:45: RuntimeWarning: More than 20 figures have been opened. Figures created through the pyplot interface (`matplotlib.pyplot.figure`) are retained until explicitly closed and may consume too much memory. (To control this warning, see the rcParam `figure.max_open_warning`). Consider using `matplotlib.pyplot.close()`. plt.figure(figsize=(12, 6)) 添加高斯噪声: 3%|▎ | 21/704 [00:01<00:38, 17.70it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\8.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\CDDFuse\zhongchangdataset\9.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 3%|▎ | 23/704 [00:01<00:38, 17.80it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\10.png 时出错: name 'stddev' is not defined 添加高斯噪声: 4%|▎ | 25/704 [00:01<00:37, 18.09it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\11.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\12.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\13.png 时出错: name 'stddev' is not defined 添加高斯噪声: 4%|▍ | 27/704 [00:01<00:37, 18.02it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\14.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\15.png 时出错: name 'stddev' is not defined 添加高斯噪声: 4%|▍ | 29/704 [00:01<00:37, 18.10it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\16.png 时出错: name 'stddev' is not defined 添加高斯噪声: 4%|▍ | 31/704 [00:01<00:41, 16.34it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\17.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\18.png 时出错: name 'stddev' is not defined 添加高斯噪声: 5%|▍ | 33/704 [00:02<00:40, 16.66it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\19.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\2.png 时出错: name 'stddev' is not defined 添加高斯噪声: 5%|▍ | 35/704 [00:02<00:39, 17.14it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\20.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\21.png 时出错: name 'stddev' is not defined 添加高斯噪声: 5%|▌ | 37/704 [00:02<00:38, 17.32it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\22.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\3.png 时出错: name 'stddev' is not defined 添加高斯噪声: 6%|▌ | 39/704 [00:02<00:37, 17.71it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\4.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\5.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\6.png 时出错: name 'stddev' is not defined 添加高斯噪声: 6%|▌ | 41/704 [00:02<00:37, 17.84it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\7.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\8.png 时出错: name 'stddev' is not defined 添加高斯噪声: 6%|▌ | 43/704 [00:02<00:36, 18.01it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\FusionGAN\zhongchang\9.png 时出错: name 'stddev' is not defined 添加高斯噪声: 6%|▋ | 45/704 [00:02<00:36, 18.00it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\10.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\11.png 时出错: name 'stddev' is not defined 添加高斯噪声: 7%|▋ | 47/704 [00:02<00:35, 18.25it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\12.png 时出错: name 'stddev' is not defined 添加高斯噪声: 7%|▋ | 49/704 [00:02<00:39, 16.49it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\13.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\14.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\15.png 时出错: name 'stddev' is not defined 添加高斯噪声: 7%|▋ | 51/704 [00:03<00:38, 17.15it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\16.png 时出错: name 'stddev' is not defined 添加高斯噪声: 8%|▊ | 53/704 [00:03<00:37, 17.24it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\17.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\18.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\19.png 时出错: name 'stddev' is not defined 添加高斯噪声: 8%|▊ | 55/704 [00:03<00:37, 17.38it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\2.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\20.png 时出错: name 'stddev' is not defined 添加高斯噪声: 8%|▊ | 57/704 [00:03<00:37, 17.42it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\21.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\22.png 时出错: name 'stddev' is not defined 添加高斯噪声: 8%|▊ | 59/704 [00:03<00:36, 17.84it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\3.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\4.png 时出错: name 'stddev' is not defined 添加高斯噪声: 9%|▊ | 61/704 [00:03<00:36, 17.74it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\5.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\6.png 时出错: name 'stddev' is not defined 添加高斯噪声: 9%|▉ | 63/704 [00:03<00:35, 18.00it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\7.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\8.png 时出错: name 'stddev' is not defined 添加高斯噪声: 9%|▉ | 65/704 [00:03<00:35, 17.82it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\IFCNN\zhongchang\9.png 时出错: name 'stddev' is not defined 添加高斯噪声: 10%|▉ | 67/704 [00:03<00:39, 15.96it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\10.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\11.png 时出错: name 'stddev' is not defined 添加高斯噪声: 10%|▉ | 69/704 [00:04<00:38, 16.41it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\12.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\13.png 时出错: name 'stddev' is not defined 添加高斯噪声: 10%|█ | 71/704 [00:04<00:36, 17.11it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\14.png 时出错: name 'stddev' is not defined 添加高斯噪声: 10%|█ | 73/704 [00:04<00:37, 17.02it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\15.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\16.png 时出错: name 'stddev' is not defined 添加高斯噪声: 11%|█ | 75/704 [00:04<00:37, 17.00it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\17.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\18.png 时出错: name 'stddev' is not defined 添加高斯噪声: 11%|█ | 77/704 [00:04<00:36, 17.30it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\19.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\2.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\20.png 时出错: name 'stddev' is not defined 添加高斯噪声: 11%|█ | 79/704 [00:04<00:35, 17.73it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\21.png 时出错: name 'stddev' is not defined 添加高斯噪声: 12%|█▏ | 81/704 [00:04<00:34, 17.80it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\22.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\3.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\4.png 时出错: name 'stddev' is not defined 添加高斯噪声: 12%|█▏ | 83/704 [00:04<00:34, 18.04it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\5.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\6.png 时出错: name 'stddev' is not defined 添加高斯噪声: 12%|█▏ | 85/704 [00:04<00:34, 18.08it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\7.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\8.png 时出错: name 'stddev' is not defined 添加高斯噪声: 12%|█▏ | 87/704 [00:05<00:34, 18.01it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\LatLRR\zhongchang\9.png 时出错: name 'stddev' is not defined 添加高斯噪声: 13%|█▎ | 89/704 [00:05<00:45, 13.41it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\10_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\11_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 13%|█▎ | 91/704 [00:05<00:42, 14.57it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\12_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\13_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\14_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 13%|█▎ | 93/704 [00:05<00:40, 15.18it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\15_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 13%|█▎ | 95/704 [00:05<00:38, 15.62it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\16_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\17_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 14%|█▍ | 97/704 [00:05<00:37, 16.23it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\18_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\19_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\1_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 14%|█▍ | 99/704 [00:05<00:36, 16.69it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\20_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\21_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 14%|█▍ | 101/704 [00:06<00:35, 17.07it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\22_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 15%|█▍ | 103/704 [00:06<00:34, 17.35it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\2_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\3_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 15%|█▍ | 105/704 [00:06<00:33, 17.62it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\4_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\5_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\6_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 15%|█▌ | 107/704 [00:06<00:34, 17.55it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\7_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 15%|█▌ | 109/704 [00:06<00:33, 17.63it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\8_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\lowconstrst\9_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 16%|█▌ | 111/704 [00:06<00:33, 17.73it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\10.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\11.png 时出错: name 'stddev' is not defined 添加高斯噪声: 16%|█▌ | 113/704 [00:06<00:33, 17.85it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\12.png 时出错: name 'stddev' is not defined 添加高斯噪声: 16%|█▋ | 115/704 [00:06<00:42, 13.84it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\13.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\14.png 时出错: name 'stddev' is not defined 添加高斯噪声: 17%|█▋ | 117/704 [00:07<00:39, 14.83it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\15.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\16.png 时出错: name 'stddev' is not defined 添加高斯噪声: 17%|█▋ | 119/704 [00:07<00:37, 15.66it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\17.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\18.png 时出错: name 'stddev' is not defined 添加高斯噪声: 17%|█▋ | 121/704 [00:07<00:35, 16.21it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\19.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\2.png 时出错: name 'stddev' is not defined 添加高斯噪声: 17%|█▋ | 123/704 [00:07<00:34, 16.71it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\20.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\21.png 时出错: name 'stddev' is not defined 添加高斯噪声: 18%|█▊ | 125/704 [00:07<00:33, 17.11it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\3.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\4.png 时出错: name 'stddev' is not defined 添加高斯噪声: 18%|█▊ | 127/704 [00:07<00:33, 17.43it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\5.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\6.png 时出错: name 'stddev' is not defined 添加高斯噪声: 18%|█▊ | 129/704 [00:07<00:32, 17.45it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\7.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\8.png 时出错: name 'stddev' is not defined 添加高斯噪声: 19%|█▊ | 131/704 [00:07<00:32, 17.47it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_avg\9.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_10_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 19%|█▉ | 133/704 [00:07<00:32, 17.48it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_11_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_12_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_13_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 19%|█▉ | 135/704 [00:08<00:32, 17.27it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_14_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_15_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 19%|█▉ | 137/704 [00:08<00:33, 17.10it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_16_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_17_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 20%|█▉ | 139/704 [00:08<00:33, 17.08it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_18_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_19_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 20%|██ | 141/704 [00:08<00:32, 17.35it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_1_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 20%|██ | 143/704 [00:08<00:32, 17.27it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_20_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_21_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 21%|██ | 145/704 [00:08<00:32, 17.36it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_2_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_3_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_4_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 21%|██ | 147/704 [00:08<00:45, 12.31it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_5_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_6_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 21%|██ | 149/704 [00:09<00:41, 13.33it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_7_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_8_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 21%|██▏ | 151/704 [00:09<00:38, 14.23it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_max\fusion_nestfuse_9_subnet_0_attention_max.png 时出错: name 'stddev' is not defined 添加高斯噪声: 22%|██▏ | 153/704 [00:09<00:36, 14.93it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_10_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_11_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 添加高斯噪声: 22%|██▏ | 155/704 [00:09<00:36, 14.88it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_12_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_13_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 添加高斯噪声: 22%|██▏ | 157/704 [00:09<00:35, 15.53it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_14_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_15_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 添加高斯噪声: 23%|██▎ | 159/704 [00:09<00:33, 16.15it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_16_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_17_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 添加高斯噪声: 23%|██▎ | 161/704 [00:09<00:32, 16.79it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_18_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_19_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_1_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 添加高斯噪声: 23%|██▎ | 163/704 [00:09<00:31, 16.91it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_20_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 添加高斯噪声: 23%|██▎ | 165/704 [00:09<00:31, 17.27it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_21_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_2_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 添加高斯噪声: 24%|██▎ | 167/704 [00:10<00:30, 17.35it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_3_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_4_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 添加高斯噪声: 24%|██▍ | 169/704 [00:10<00:30, 17.44it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_5_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_6_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_7_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 添加高斯噪声: 24%|██▍ | 171/704 [00:10<00:31, 17.19it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_8_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 添加高斯噪声: 25%|██▍ | 173/704 [00:10<00:30, 17.39it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\nestfuse\zhongchangdataset\attention_nuclear\fusion_nestfuse_9_subnet_0_attention_nuclear.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\10_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\11_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 25%|██▍ | 175/704 [00:10<00:30, 17.14it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\12_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\13_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 25%|██▌ | 177/704 [00:10<00:30, 17.02it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\14_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 25%|██▌ | 179/704 [00:10<00:30, 17.02it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\15_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\16_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 26%|██▌ | 181/704 [00:10<00:30, 17.23it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\17_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\18_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 26%|██▌ | 183/704 [00:10<00:29, 17.49it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\19_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\1_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 26%|██▋ | 185/704 [00:11<00:29, 17.63it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\20_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\21_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\22_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 27%|██▋ | 187/704 [00:11<00:29, 17.53it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\2_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 27%|██▋ | 189/704 [00:11<00:41, 12.50it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\3_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\4_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 27%|██▋ | 191/704 [00:11<00:37, 13.85it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\5_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\6_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 27%|██▋ | 193/704 [00:11<00:35, 14.44it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\7_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\8_1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 28%|██▊ | 195/704 [00:11<00:33, 15.05it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\ourswuwenb\9_1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 28%|██▊ | 197/704 [00:11<00:32, 15.66it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\10.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\11.png 时出错: name 'stddev' is not defined 添加高斯噪声: 28%|██▊ | 199/704 [00:12<00:31, 16.20it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\12.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\13.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\14.png 时出错: name 'stddev' is not defined 添加高斯噪声: 29%|██▊ | 201/704 [00:12<00:29, 16.82it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\15.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\16.png 时出错: name 'stddev' is not defined 添加高斯噪声: 29%|██▉ | 203/704 [00:12<00:29, 17.03it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\17.png 时出错: name 'stddev' is not defined 添加高斯噪声: 29%|██▉ | 205/704 [00:12<00:29, 17.16it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\18.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\19.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\2.png 时出错: name 'stddev' is not defined 添加高斯噪声: 29%|██▉ | 207/704 [00:12<00:29, 16.86it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\20.png 时出错: name 'stddev' is not defined 添加高斯噪声: 30%|██▉ | 209/704 [00:12<00:30, 16.45it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\21.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\22.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\3.png 时出错: name 'stddev' is not defined 添加高斯噪声: 30%|██▉ | 211/704 [00:12<00:30, 16.42it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\4.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\5.png 时出错: name 'stddev' is not defined 添加高斯噪声: 30%|███ | 213/704 [00:12<00:29, 16.53it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\6.png 时出错: name 'stddev' is not defined 添加高斯噪声: 31%|███ | 215/704 [00:13<00:29, 16.67it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\7.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\8.png 时出错: name 'stddev' is not defined 添加高斯噪声: 31%|███ | 217/704 [00:13<00:28, 16.81it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\SwinFusion\zhongchangdataset\9.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\10.png 时出错: name 'stddev' is not defined 添加高斯噪声: 31%|███ | 219/704 [00:13<00:28, 17.29it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\11.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\12.png 时出错: name 'stddev' is not defined 添加高斯噪声: 31%|███▏ | 221/704 [00:13<00:28, 17.08it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\13.png 时出错: name 'stddev' is not defined 添加高斯噪声: 32%|███▏ | 223/704 [00:13<00:27, 17.47it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\14.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\15.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\16.png 时出错: name 'stddev' is not defined 添加高斯噪声: 32%|███▏ | 225/704 [00:13<00:27, 17.31it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\17.png 时出错: name 'stddev' is not defined 添加高斯噪声: 32%|███▏ | 227/704 [00:13<00:26, 17.68it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\18.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\19.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\2.png 时出错: name 'stddev' is not defined 添加高斯噪声: 33%|███▎ | 229/704 [00:13<00:27, 17.52it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\20.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\21.png 时出错: name 'stddev' is not defined 添加高斯噪声: 33%|███▎ | 231/704 [00:13<00:26, 17.63it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\22.png 时出错: name 'stddev' is not defined 添加高斯噪声: 33%|███▎ | 233/704 [00:14<00:26, 17.50it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\3.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\4.png 时出错: name 'stddev' is not defined 添加高斯噪声: 33%|███▎ | 235/704 [00:14<00:27, 17.31it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\5.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\6.png 时出错: name 'stddev' is not defined 添加高斯噪声: 34%|███▎ | 237/704 [00:14<00:27, 16.76it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\7.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\8.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\CLIP\VGG19\zhongchang\9.png 时出错: name 'stddev' is not defined 添加高斯噪声: 34%|███▍ | 239/704 [00:14<00:40, 11.39it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\1.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\10.png 时出错: name 'stddev' is not defined 添加高斯噪声: 34%|███▍ | 241/704 [00:14<00:35, 12.97it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\11.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\12.png 时出错: name 'stddev' is not defined 添加高斯噪声: 35%|███▍ | 243/704 [00:14<00:32, 14.14it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\13.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\14.png 时出错: name 'stddev' is not defined 添加高斯噪声: 35%|███▍ | 245/704 [00:14<00:30, 15.23it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\15.png 时出错: name 'stddev' is not defined 添加高斯噪声: 35%|███▌ | 247/704 [00:15<00:32, 14.18it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\2.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\3.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\4.png 时出错: name 'stddev' is not defined 添加高斯噪声: 35%|███▌ | 249/704 [00:15<00:45, 9.91it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\5.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\6.png 时出错: name 'stddev' is not defined 添加高斯噪声: 36%|███▌ | 251/704 [00:15<00:40, 11.31it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\7.png 时出错: name 'stddev' is not defined 添加高斯噪声: 36%|███▌ | 253/704 [00:15<00:36, 12.51it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\8.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\CDDFuse\zhongduandataset\9.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\FusionGAN\zhongduan\1.png 时出错: name 'stddev' is not defined 添加高斯噪声: 36%|███▌ | 255/704 [00:16<01:17, 5.80it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\FusionGAN\zhongduan\10.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\FusionGAN\zhongduan\11.png 时出错: name 'stddev' is not defined 添加高斯噪声: 37%|███▋ | 257/704 [00:16<01:01, 7.30it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\FusionGAN\zhongduan\12.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\FusionGAN\zhongduan\13.png 时出错: name 'stddev' is not defined 添加高斯噪声: 37%|███▋ | 259/704 [00:16<00:51, 8.72it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\FusionGAN\zhongduan\14.png 时出错: name 'stddev' is not defined 添加高斯噪声: 37%|███▋ | 261/704 [00:16<00:42, 10.31it/s]处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\FusionGAN\zhongduan\15.png 时出错: name 'stddev' is not defined 处理图片 E:\Python_Project\ADD_NOISE\infrared multi\KIND\FusionGAN\zhongduan\2.png 时出错: name 'stddev' is not defined Fail to allocate bitmap
最新发布
07-31
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值