1. ホーム
  2. スクリプト・コラム
  3. パイソン

ローカル画像ズーム用python

2022-01-28 21:52:53

この例では、参考のために python でローカル画像ズームを実装するための具体的なコードを以下のように共有します。

import cv2 as cv
import sys

if __name__ == '__main__':
    # read the image and determine if the read was successful
    img = cv.imread('tu.jpg')
    # The part that needs to be enlarged
    part = img[300:400,250:350]
    # bilinear interpolation
    mask = cv.resize(part, (300, 300), fx=0, fy=0, interpolation=cv.INTER_LINEAR)
    if img is None is None:
        print('Failed to read picture')
        sys.exit()
        
    # zoom in on the location of the partial picture img[210:410,670:870]
    img[110:410,570:870]=mask

    # draw the frame and connect the lines
    cv.rectangle(img,(250,300),(350,400),(0,255,0),1)
    cv.rectangle(img,(570,110),(870,410),(0,255,0),1)
    img = cv.line(img,(350,300),(570,110),(0,255,0))
    img = cv.line(img,(350,400),(570,410),(0,255,0))
    #Show results
    cv.imshow('img',img)
    cv.waitKey(0)
    cv.destroyAllWindows()

オリジナル画像です。

結果

以上が今回の記事の内容ですが、皆様の学習の一助となり、スクリプトハウスをより一層応援していただければ幸いです。