python 3.6.6
tensorflow-gpu 1.15.0
이미지를 열었을 때는 정상적으로 작동했는데
비디오 파일을 열어 장면을 특정 경로에 저장하는 코드에서 오류가 났다.
img_name = os.path.join(outfolder, os.path.basename(im))
경로를 다음과 같이 명확하게 지정해주었더니 오류가 해결 되었다.
img_name = "./out/{}.jpg".format(random.random())
'Debugging' 카테고리의 다른 글
version `GLIBC_2.25' not found 오류 해결(virtualbox Ubuntu 16.04) (0) | 2020.06.23 |
---|---|
OSError: [WinError 10013] 액세스 권한에 의해 숨겨진 소켓에 액세스를 시도했습니다 오류해결 (0) | 2020.05.27 |
InvalidArgumentError: Input to reshape is a tensor with 84500 values, but the requested shape requires a multiple of 5070 오류 해결 (1) | 2019.12.22 |
파이썬(python) 주석 단축키가 작동되지 않을 때 (11) | 2019.12.13 |
Pycharm 파이참 out of memory shut down 오류 해결 (0) | 2019.12.07 |