python opencv 에서 그림 의 크기 를 대량으로 바 꾸 는 방법

내 대상 폴 더 아래 에 많은 그림 이 있 습 니 다.나 는 그것 을 지정 한 크기 의 그림 으로 바 꾸 고 pthon 과 opencv 로 이 루어 질 것 입 니 다.

이상 은 원본 사진 입 니 다.

import cv2
import os
#            
def resize_image(image, height = 640, width = 480):
  top, bottom, left, right = (0,0,0,0)
  
  #       
  h, w, _ = image.shape
  
  #          ,       
  longest_edge = max(h,w)
  
  #                      (   padding,   padding 0,     padding)
  if h < longest_edge:
    dh = longest_edge - h
    top = dh // 2
    bottom = dh - top
  elif w < longest_edge:
    dw = longest_edge - w
    left = dw // 2
    right = dw - left
  else:
    pass # pass    ,             。pass      ,        。
  
  # RGB  
  BLACK = [0,0,0]
  #      padding,    、   
  # top, bottom, left, right          ,cv2.BORDER_CONSTANT   border type,          
  constant = cv2.copyMakeBorder(image, top, bottom, left, right, cv2.BORDER_CONSTANT, value = BLACK)
  #            ,             ,      
  return cv2.resize(constant, (height, width))

def read__image(path_name):
  num = 0 
  for dir_image in os.listdir(path_name): # os.listdir()                            
    full_path = os.path.abspath(os.path.join(path_name,dir_image)) 
    
    if os.path.isdir(full_path): #      ,      
      read_training_data(full_path)
    else: #      
      if dir_image.endswith('.JPG'):
        image = cv2.imread(full_path)
        image = resize_image(image)
        #             
        image_name = '%s%d.jpg' % ('resize_image',num) #                ,    imwrite       
        cv2.imwrite(image_name, image)
        num = num + 1

if __name__=='__main__':
  read__image('C:/Users/baideguo/dataset/JPEGImages/')
나 는 원래 의 그림 크기 를 3024 x 4032 로 640*480 크기 의 그림 으로 바 꾸 었 다.
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기