python+opencv 读取文件夹下的所有图像并批量保存ROI的方法

作者:zhangxu_bme 时间:2021-02-23 13:07:23 

如下所示:


import cv2
import os

import numpy as np

root_path = "I:/Images/2017_08_03/"
dir = root_path+"images"+"/"
count = 0
for root,dir,files in os.walk(dir):
for file in files:
 srcImg = cv2.imread(root_path+"images"+"/"+str(file))
 roiImg = srcImg[36:521, 180:745]
 cv2.imwrite(root_path+"Image"+"/"+str(file),roiImg)
 count +=1
 if count%400==0:
  print count

来源:https://blog.csdn.net/chengzhongxuyou/article/details/76823964

标签:python,opencv,图像,ROI
0
投稿

猜你喜欢

  • ASP+MSSQL2000 数据库被批量注入后的解决方法第1/2页

    2011-04-06 10:50:00
  • Django中的ajax请求

    2022-10-19 10:28:14
  • python类参数定义及数据扩展方式unsqueeze/expand

    2023-08-07 21:56:42
  • 利用Python实现Excel的文件间的数据匹配功能

    2023-12-04 19:53:42
  • Python matplotlib画曲线例题解析

    2022-10-18 14:17:30
  • python实现二叉排序树

    2022-08-26 04:34:37
  • SQL语句检测sp4补丁是否安装

    2024-01-26 01:00:08
  • Go语言实现请求超时处理的方法总结

    2024-04-23 09:37:50
  • python合并文本文件示例

    2021-05-08 01:24:49
  • Python爬虫抓取指定网页图片代码实例

    2021-10-24 17:17:23
  • 浅谈python中常用的excel模块库

    2021-04-20 11:29:41
  • Instr函数与InstrRev函数的区别

    2008-07-07 16:53:00
  • pygame游戏之旅 按钮上添加文字的方法

    2022-09-28 23:41:39
  • php+mysql实现简单登录注册修改密码网页

    2024-04-30 08:49:54
  • Matplotlib绘制条形图的方法你知道吗

    2022-12-05 15:23:59
  • Python 反转字符串(reverse)的方法小结

    2023-05-28 11:04:22
  • 详解Python中__str__和__repr__方法的区别

    2023-02-28 17:29:17
  • python编程学习使用管道Pipe编写优化代码

    2023-08-20 04:08:45
  • python 直接赋值和copy的区别详解

    2023-12-14 04:08:49
  • php获取文件大小的方法

    2024-05-13 09:26:15
  • asp之家 网络编程 m.aspxhome.com