自作のTransformの作成方法
参考ページ:Pytorch – torchvision で使える Transform まとめ
画像データの前処理に利用するtransforms
では、Lambda関数を渡すことでユーザ定義のTransformが作れる。
from torchvision import transforms
import cv2
import matplotlib.pyplot as plt
img = cv2.imread("sample.jpeg")
plt.imshow(img)
def gray(img):
"""
RGBに変換してグレースケール化
"""
img = cv2.cvtColor(img, cv2.COLOR_BGR2RGB)
img = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY)
return img
transform = transforms.Lambda(gray)
img_transformed = transform(img)
plt.imshow(img_transformed)
この処理をComposeでつなげれば、pytorchのtransformのpipelineに組み込むことができる。
Author And Source
この問題について(自作のTransformの作成方法), 我々は、より多くの情報をここで見つけました https://qiita.com/tnot_found/items/5a2ff726ea5205e1b9f9著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .