Showing
1 changed file
with
2 additions
and
2 deletions
... | @@ -92,7 +92,7 @@ Code explanation | ... | @@ -92,7 +92,7 @@ Code explanation |
92 | ├── source code | 92 | ├── source code |
93 | | ├── Our Encoder | 93 | | ├── Our Encoder |
94 | | | ├── codec_allIntra.py | 94 | | | ├── codec_allIntra.py |
95 | -| | ├── codec_RA(proposed).py | 95 | +| | ├── codec_proposed.py |
96 | | | ├── codec_anotherMethod.py | 96 | | | ├── codec_anotherMethod.py |
97 | | | ├── train_RGB.py | 97 | | | ├── train_RGB.py |
98 | | | ├── train_RGB_MS-SSIMloss.py | 98 | | | ├── train_RGB_MS-SSIMloss.py |
... | @@ -134,7 +134,7 @@ PostProcessing: HEVC 또는 VVC에서 Decoding된 영상(10bit, BGR)을 8it, RGB | ... | @@ -134,7 +134,7 @@ PostProcessing: HEVC 또는 VVC에서 Decoding된 영상(10bit, BGR)을 8it, RGB |
134 | 134 | ||
135 | #### Our Codec | 135 | #### Our Codec |
136 | codec_allIntra: ALL Intra Compression Codec | 136 | codec_allIntra: ALL Intra Compression Codec |
137 | -codec_RA(proposed): First Frame Intra Compression + Other Frame Residual(clip(recon-ref, -0.5, 0.5)+0.5) Compression Codec | 137 | +codec_proposed: First Frame Intra Compression + Other Frame Residual(clip(recon-ref, -0.5, 0.5)+0.5) Compression Codec |
138 | codec_anotherMethod: First Frame Intra + Other Frame Residual1(clip(recon-ref, 0, 1)), Residual2(-clip(recon-ref, -1, 0)) Codec | 138 | codec_anotherMethod: First Frame Intra + Other Frame Residual1(clip(recon-ref, 0, 1)), Residual2(-clip(recon-ref, -1, 0)) Codec |
139 | train_RGB.py: Training code of RGB 444 format residual image with MSE loss | 139 | train_RGB.py: Training code of RGB 444 format residual image with MSE loss |
140 | train_RGB_MS-SSIMloss.py: Training code of RGB 444 format residual image with MS-SSIM loss | 140 | train_RGB_MS-SSIMloss.py: Training code of RGB 444 format residual image with MS-SSIM loss | ... | ... |
-
Please register or login to post a comment