hanbin9775

Readme fixed

......@@ -33,7 +33,7 @@
```
ffmpeg -i [추출한 동영상 파일 이름].mp4
-vf "select=eq(pict_type\,I),scale=1280:720" // scale을 해당 영상의 크기에 맞춰, keyframe으로 추출
-vf "select=eq(pict_type\,I),scale=640:360" // scale을 해당 영상의 크기의 1/2로, keyframe으로 추출
-vsync 0 [추출한 frame 저장할 디렉토리]/%06d.png
```
......@@ -60,7 +60,7 @@ Path("./dataset/DIV2K/DIV2K_train_LR_bicubic/X2").mkdir(parents=True, exist_ok=T
from tqdm import tqdm
for image in tqdm(images):
hr = cv2.imread(image, cv2.IMREAD_COLOR)
lr = cv2.resize(hr, dsize=(640, 360), interpolation=cv2.INTER_CUBIC)
lr = cv2.resize(hr, dsize=(320, 180), interpolation=cv2.INTER_CUBIC)
cv2.imwrite("./dataset/DIV2K/DIV2K_train_HR/" + Path(image).name, hr)
cv2.imwrite("./dataset/DIV2K/DIV2K_train_LR_bicubic/X2/" + Path(image).stem + "x2.png", lr)
......