Showing
1 changed file
with
7 additions
and
7 deletions
... | @@ -73,19 +73,19 @@ Code explanation | ... | @@ -73,19 +73,19 @@ Code explanation |
73 | └── 중간보고서.hwp | 73 | └── 중간보고서.hwp |
74 | ``` | 74 | ``` |
75 | #### PreProcessing | 75 | #### PreProcessing |
76 | -frame_to_png: 하나의 frame(.rgb)를 이미지(.png) 파일로 변환 | 76 | +frame_to_png: 하나의 frame(.rgb)를 이미지(.png) 파일로 변환 |
77 | -MakeBat: HEVC 또는 VVC batch 파일내용 생성 코드 | 77 | +MakeBat: HEVC 또는 VVC batch 파일내용 생성 코드 |
78 | -rgb_to_frame: 여러 frame의 영상(.rgb)을 하나의 frame(.rgb) 단위로 변환 | 78 | +rgb_to_frame: 여러 frame의 영상(.rgb)을 하나의 frame(.rgb) 단위로 변환 |
79 | -rgb_to_png: 여러 frame의 영상(.rgb)을 하나의 이미지(.png) 단위로 변환 | 79 | +rgb_to_png: 여러 frame의 영상(.rgb)을 하나의 이미지(.png) 단위로 변환 |
80 | 80 | ||
81 | #### PostProcessing | 81 | #### PostProcessing |
82 | -png_to_rgb: 여러 이미지(.png)를 여러 frame의 영상(.rgb)으로 변환 | 82 | +png_to_rgb: 여러 이미지(.png)를 여러 frame의 영상(.rgb)으로 변환 |
83 | -PostProcessing: HEVC 또는 VVC에서 Decoding된 영상(10bit, BGR)을 8it, RGB영상으로 변환 및 PSNR, SSIM, BPP계산 | 83 | +PostProcessing: HEVC 또는 VVC에서 Decoding된 영상(10bit, BGR)을 8it, RGB영상으로 변환 및 PSNR, SSIM, BPP계산 |
84 | 84 | ||
85 | #### Our Codec | 85 | #### Our Codec |
86 | codec-Copy1: ALL Intra Compression Codec | 86 | codec-Copy1: ALL Intra Compression Codec |
87 | codec-Copy2: First Frame Intra Compression + Other Frame Residual(clip(recon-ref, -0.5, 0.5)+0.5) Compression Codec | 87 | codec-Copy2: First Frame Intra Compression + Other Frame Residual(clip(recon-ref, -0.5, 0.5)+0.5) Compression Codec |
88 | codec-Copy3: First Frame Intra + Other Frame Residual1(clip(recon-ref, 0, 1)), Residual2(-clip(recon-ref, -1, 0)) Codec | 88 | codec-Copy3: First Frame Intra + Other Frame Residual1(clip(recon-ref, 0, 1)), Residual2(-clip(recon-ref, -1, 0)) Codec |
89 | 89 | ||
90 | -명령어: python [codec name] [encode or decode mode] --model [model name] -m [mse] -fr [frame rate] -f [frame count] -q [quality] [sequence name] | 90 | +명령어: python [codec name] [encode or decode mode] --model [model name] -m [mse] -fr [frame rate] -f [frame count] -q [quality] [sequence name] |
91 | 명령어 예시: python examples/codec-Copy2.py encode --model cheng2020-anchor -m mse -q 6 CrowdRun | 91 | 명령어 예시: python examples/codec-Copy2.py encode --model cheng2020-anchor -m mse -q 6 CrowdRun |
... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or login to post a comment