최승미

Update README.md

Showing 1 changed file with 10 additions and 7 deletions
...@@ -76,9 +76,11 @@ Code explanation ...@@ -76,9 +76,11 @@ Code explanation
76 . 76 .
77 ├── README.md 77 ├── README.md
78 ├── Our Encoder 78 ├── Our Encoder
79 -| ├── codec-Copy1.py 79 +| ├── codec_allIntra.py
80 -| ├── codec-Copy2.py 80 +| ├── codec_proposed.py
81 -| └── codec-Copy3.py 81 +| ├── codec_anotherMethod.py
82 +| ├── train_RGB.py
83 +| └── train_YCbCr.py
82 ├── PostProcessing 84 ├── PostProcessing
83 | ├── get_BPP.m 85 | ├── get_BPP.m
84 | ├── get_PSNR_and_BPP manual.docx 86 | ├── get_PSNR_and_BPP manual.docx
...@@ -93,7 +95,8 @@ Code explanation ...@@ -93,7 +95,8 @@ Code explanation
93 ├── 영상 주관적 화질평가 95 ├── 영상 주관적 화질평가
94 | └── pYUV manual.docx 96 | └── pYUV manual.docx
95 ├── 기초조사서.docx 97 ├── 기초조사서.docx
96 -└── 중간보고서.hwp 98 +├── 중간보고서.hwp
99 +└── 최종보고서.docx
97 ``` 100 ```
98 #### PreProcessing 101 #### PreProcessing
99 frame_to_png: 하나의 frame(.rgb)를 이미지(.png) 파일로 변환 102 frame_to_png: 하나의 frame(.rgb)를 이미지(.png) 파일로 변환
...@@ -106,9 +109,9 @@ png_to_rgb: 여러 이미지(.png)를 여러 frame의 영상(.rgb)으로 변환 ...@@ -106,9 +109,9 @@ png_to_rgb: 여러 이미지(.png)를 여러 frame의 영상(.rgb)으로 변환
106 PostProcessing: HEVC 또는 VVC에서 Decoding된 영상(10bit, BGR)을 8it, RGB영상으로 변환 및 PSNR, SSIM, BPP계산 109 PostProcessing: HEVC 또는 VVC에서 Decoding된 영상(10bit, BGR)을 8it, RGB영상으로 변환 및 PSNR, SSIM, BPP계산
107 110
108 #### Our Codec 111 #### Our Codec
109 -codec-Copy1: ALL Intra Compression Codec 112 +codec_allIntra: ALL Intra Compression Codec
110 -codec-Copy2: First Frame Intra Compression + Other Frame Residual(clip(recon-ref, -0.5, 0.5)+0.5) Compression Codec 113 +codec_proposed: First Frame Intra Compression + Other Frame Residual(clip(recon-ref, -0.5, 0.5)+0.5) Compression Codec
111 -codec-Copy3: First Frame Intra + Other Frame Residual1(clip(recon-ref, 0, 1)), Residual2(-clip(recon-ref, -1, 0)) Codec 114 +codec_anotherMethod: First Frame Intra + Other Frame Residual1(clip(recon-ref, 0, 1)), Residual2(-clip(recon-ref, -1, 0)) Codec
112 115
113 116
114 명령어 117 명령어
......