1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Python OpenCVで画像の右下部分をトリミングする方法

Last updated at Posted at 2019-12-23

はじめに

初投稿です。
メモ用に残します。

 対象者

  • Python初心者
  • 写真をトリミングしたいけど、やり方がわからない人
  • 複数写真を一気にトリミングしたい方

やったこと

複数写真の右下部分だけ切り出しを行い保存するソースの実装。
言葉だけ書いてもわかりづらいので、早速トリミングした写真です。

トリミング前

lena.jpg

トリミング後

trim_photo1.jpg

ソースコード

trim_photo.py
# インポート
import os, glob
import cv2

# トリミング対象の写真フォルダ
importPath = r"C:\Users\User\Desktop\photo"
# トリミング後のファイル格納場所
outputPath = r"C:\Users\User\Desktop\output"
# 保存用ファイル名
fileName = "trim_photo"

# ループで対象フォルダ内の写真をトリミング
i = 1
for infile in glob.glob( os.path.join(importPath, '*.png') ): #png形式のみ指定
    # ファイル名の生成
    imgname= fileName + str(i)
    #ファイル読み込み
    img = cv2.imread(infile)
    #トリミングエリアを指定し、切り出す
    img = img[0 : 200, 0 : 300]
    cv2.imwrite(outputPath + imgname + '.png', img)
    i = i +1

トリミングエリア指定部分

下記箇所にてトリミングエリアを指定している。

    #トリミングエリアを指定し、切り出す
    img = img[0 : 200, 0 : 300]

上記の場合下から200ピクセル、右から300ピクセル切り出すよう指定している。

最後に

Pyhtonって楽に実装できて素敵ですね。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?