Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design1
/
KHY_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
최승미
2021-06-15 00:56:20 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
5e6e0306f3996b35864f8e804f04b7f99f149245
5e6e0306
1 parent
9616d152
Update README.md
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
README.md
README.md
View file @
5e6e030
...
...
@@ -81,6 +81,7 @@ Code explanation
| ├── codec_proposed.py
| ├── codec_anotherMethod.py
| ├── train_RGB.py
| ├── train_RGB_MS-SSIMloss.py
| └── train_YCbCr.py
├── PostProcessing
| ├── get_BPP.m
...
...
@@ -121,8 +122,9 @@ PostProcessing: HEVC 또는 VVC에서 Decoding된 영상(10bit, BGR)을 8it, RGB
codec_allIntra: ALL Intra Compression Codec
codec_proposed: First Frame Intra Compression + Other Frame Residual(clip(recon-ref, -0.5, 0.5)+0.5) Compression Codec
codec_anotherMethod: First Frame Intra + Other Frame Residual1(clip(recon-ref, 0, 1)), Residual2(-clip(recon-ref, -1, 0)) Codec
train_RGB.py: Training code of RGB 444 format residual image
train_YCbCr.py: Training code of YCbCr 444 format residual image
train_RGB.py: Training code of RGB 444 format residual image with MSE loss
train_RGB_MS-SSIMloss.py: Training code of RGB 444 format residual image with MS-SSIM loss
train_YCbCr.py: Training code of YCbCr 444 format residual image with MSE loss
명령어
```
python
...
...
@@ -133,8 +135,8 @@ python [train name] -d [data path] --epochs [epochs] -lr [learning rate] -fr [fr
```
명령어 예시
```
python
python
examples
/
codec
-
Copy2
.
py
encode
--
model
cheng2020
-
anchor
-
m
mse
-
q
6
CrowdRun
python
examples
/
codec
_proposed
.
py
encode
--
model
cheng2020
-
anchor
-
m
mse
-
q
6
CrowdRun
```
```
python
python
examples
/
mse_ycbc
r
.
py
-
d
Data
/
--
epochs
150
-
lr
1e-4
-
q
4
--
batch
-
size
16
--
cuda
--
save
python
examples
/
train_YCbC
r
.
py
-
d
Data
/
--
epochs
150
-
lr
1e-4
-
q
4
--
batch
-
size
16
--
cuda
--
save
```
\ No newline at end of file
...
...
Please
register
or
login
to post a comment