uos-machine-learning
Image Super Resolution Evaluation Metric 케라스 구현 본문
1. PSNR(Peak Signal-to-Noise Ratio)
정 의 : 신호가 가질 수 있는 최대전력 잡음비
# 케라스 psnr 평가 metric 예시
def PSNR(y_true, y_pred):
return tf.image.psnr(y_true, y_pred, max_val=1.0)
2. SSIM(Structural Similarity Index)
정 의 : 압축 및 변환에 의해 발생하는 왜곡에 대하여 원본 영상에 대한 유사도를 측정하는 방법
def SSIM(y_true, y_pred):
return tf.image.ssim(y_true, y_pred, max_val=1.0)
'딥러닝' 카테고리의 다른 글
Yolo v3 논문 리뷰 (0) | 2019.09.18 |
---|---|
파이썬 라이브러리 소개 - imgaug (1) | 2019.09.12 |
CycleGAN Implementataion 코드에 Wasserstein loss 추가하기(Pytorch) (0) | 2019.09.08 |
Tensorflow 2.0 Neural Style Transfer 튜토리얼 (5) | 2019.05.14 |
Keras Custom Loss 만들기 (0) | 2019.05.09 |
Comments