数据读取错误:RuntimeError: The size of tensor a (3) must match the size of tensor b (4) at non-singleton

去除4通道图像:

import cv2
import os
import shutil

folder_path = R'F:\bounding_box_test\bounding_box_train'  # 更改为存储图片文件夹的路径
image_files = os.listdir(folder_path)
count = 0
for file_name in image_files:
    if file_name.endswith('.jpg') or file_name.endswith('.png'):  # 可根据文件扩展名进行调整
        image_path = os.path.join(folder_path, file_name)
        # print(file_name)
        image = cv2.imread(image_path, cv2.IMREAD_UNCHANGED)
        try:
            a = image.shape
            rgb_image = cv2.cvtColor(image, cv2.COLOR_BGR2RGB)
            height, width, channels = image.shape
        except:
            os.remove(image_path)
            print("Remove: " + image_path)
            count +=1
        if channels != 3:
	        os.remove(image_path)
            print(file_name)
        cv2.waitKey(0)
print(count)
cv2.destroyAllWindows()

删除损坏的图片 移出4通道图像

Original Traceback (most recent call last):
  File "/home/sunyingli/miniconda3/envs/myv5/lib/python3.9/site-packages/torch/utils/data/_utils/worker.py", line 302, in _worker_loop
    data = fetcher.fetch(index)
  File "/home/sunyingli/miniconda3/envs/myv5/lib/python3.9/site-packages/torch/utils/data/_utils/fetch.py", line 52, in fetch
    return self.collate_fn(data)
  File "/home/sunyingli/fast-reid/fastreid/data/build.py", line 187, in fast_batch_collator
    return {key: fast_batch_collator([d[key] for d in batched_inputs]) for key in elem}
  File "/home/sunyingli/fast-reid/fastreid/data/build.py", line 187, in <dictcomp>
    return {key: fast_batch_collator([d[key] for d in batched_inputs]) for key in elem}
  File "/home/sunyingli/fast-reid/fastreid/data/build.py", line 183, in fast_batch_collator
    out[i] += tensor
RuntimeError: The size of tensor a (3) must match the size of tensor b (4) at non-singleton dimension 0


  • 7
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
引用\[1\]和\[2\]提到了类似的错误信息,即"RuntimeError: The size of tensor a (4) must match the size of tensor b (2) at non-singleton dimension 1"和"RuntimeError: The size of tensor a (4) must match the size of tensor b (3) at non-singleton dimension 0"。这些错误通常是由于维度信息不匹配导致的。引用\[2\]中提供了一个解决办法,即将图像转换为RGB格式。因此,对于你的问题"RuntimeError: The size of tensor a (84) must match the size of tensor b (56) at non-singleton dimension 3",你可以尝试将图像转换为RGB格式来解决这个问题。 #### 引用[.reference_title] - *1* [RuntimeError: The size of tensor a (4) must match the size of tensor b (2) at non-singleton dimensio](https://blog.csdn.net/weixin_44337238/article/details/124293003)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [报错解决——RuntimeError: The size of tensor a (4) must match the size of tensor b (3) at non-...](https://blog.csdn.net/Williamcsj/article/details/125746752)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] - *3* [RuntimeError: The size of tensor a (4) must match the size of tensor b (3) at non-singleton dimensio](https://blog.csdn.net/weixin_46135327/article/details/130805823)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值