Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2021-1-capstone-design1
/
BSH_Project3
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-04-07 14:21:34 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a45aedf36c5332ca0e4689cc1d899b4e7e39a5b1
a45aedf3
1 parent
bcbcea0c
Bicubic Downsampling 코드 추가
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
82 additions
and
0 deletions
notebooks/resize.ipynb
notebooks/resize.ipynb
0 → 100644
View file @
a45aedf
{
"cells"
:
[
{
"cell_type"
:
"code"
,
"execution_count"
:
1
,
"id"
:
"ahead-paste"
,
"metadata"
:
{},
"outputs"
:
[],
"source"
:
[
"from glob import glob
\n
"
,
"import cv2
\n
"
,
"
\n
"
,
"images = sorted(glob(
\"
../bbb_sunflower_540p/*.png
\"
))"
]
},
{
"cell_type"
:
"code"
,
"execution_count"
:
2
,
"id"
:
"rapid-tension"
,
"metadata"
:
{},
"outputs"
:
[],
"source"
:
[
"from pathlib import Path
\n
"
,
"Path(
\"
../dataset/DIV2K/DIV2K_train_HR
\"
).mkdir(parents=True, exist_ok=True)
\n
"
,
"Path(
\"
../dataset/DIV2K/DIV2K_train_LR_bicubic/X2
\"
).mkdir(parents=True, exist_ok=True)"
]
},
{
"cell_type"
:
"code"
,
"execution_count"
:
3
,
"id"
:
"visible-texas"
,
"metadata"
:
{},
"outputs"
:
[
{
"name"
:
"stderr"
,
"output_type"
:
"stream"
,
"text"
:
[
"100%|██████████| 1800/1800 [01:21<00:00, 22.00it/s]
\n
"
]
}
],
"source"
:
[
"from tqdm import tqdm
\n
"
,
"for image in tqdm(images):
\n
"
,
" hr = cv2.imread(image, cv2.IMREAD_COLOR)
\n
"
,
" lr = cv2.resize(hr, dsize=(480, 270), interpolation=cv2.INTER_CUBIC)
\n
"
,
"
\n
"
,
" cv2.imwrite(
\"
../dataset/DIV2K/DIV2K_train_HR/
\"
+ Path(image).name, hr)
\n
"
,
" cv2.imwrite(
\"
../dataset/DIV2K/DIV2K_train_LR_bicubic/X2/
\"
+ Path(image).stem +
\"
x2.png
\"
, lr)"
]
},
{
"cell_type"
:
"code"
,
"execution_count"
:
null
,
"id"
:
"fallen-religion"
,
"metadata"
:
{},
"outputs"
:
[],
"source"
:
[]
}
],
"metadata"
:
{
"kernelspec"
:
{
"display_name"
:
"Python 3"
,
"language"
:
"python"
,
"name"
:
"python3"
},
"language_info"
:
{
"codemirror_mode"
:
{
"name"
:
"ipython"
,
"version"
:
3
},
"file_extension"
:
".py"
,
"mimetype"
:
"text/x-python"
,
"name"
:
"python"
,
"nbconvert_exporter"
:
"python"
,
"pygments_lexer"
:
"ipython3"
,
"version"
:
"3.7.7"
}
},
"nbformat"
:
4
,
"nbformat_minor"
:
5
}
Please
register
or
login
to post a comment