Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 불 자료형
- 기초100제
- 2진수
- 코드업
- 반복실행구조
- Docker
- 산술연산
- face recognition
- 8진수
- 16진수
- 선택실행구조
- 10진수
- 아스키코드
- codeup
- 종합
- OpenCV
- 비트단위논리연산
- 비교연산
- 기초 100제
- 2차원배열
- input()
- 딥러닝
- 입출력
- 파이썬
- 논리연산
- 문자열
- 진수
- bitwise
- 불 연산
- 출력
Archives
- Today
- Total
DeepFlowest
Video Inpainting2 본문
728x90
반응형
SMALL
github.com/mcahny/Deep-Video-Inpainting
코드를 실행시켜 보며 video inpainting 실습을 해본다.
우선 Window 환경이기 때문에 리눅스 명령어를 활용할 수 없어서 "MobaXterm(모바X텀)" SSH을 통해 설치를 진행하였다.
MobaXterm 관련 설치는 이 포스팅에 해두었다.
1. conda 환경 만들고, Pytorch library 설치하기
>> conda create -n vinet python=3.7 -y
>> conda activate vinet
>> conda install pytorch=1.4 torchvision cudatoolkit=10.0 -c pytorch -y
2. git clone
git clone https://github.com/mcahny/Deep-Video-Inpainting.git
git이 설치가 안 되어 있다면,
sudo apt install git
3. Compile Resample2d, Correlation dependencies
>> cd Deep-Video-Inpainting/
>> bash ./install.sh
>> CUDA 에러 뜬다.
다음과 같이 따라하면 된다.
>> wget http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda_10.2.89_440.33.01_linux.run
>> sudo sh cuda_10.2.89_440.33.01_linux.run
>> 에러 뜸 ==> 이 사이트 참고해서 해결
4. jupyterlab or jupyter notebook 설치
conda install jupyterlab
jupyter lab --ip=141.223.122.9 로 열기
or
conda install jupyter
jupyter notebook --ip=141.223.122.9 로 열기
728x90
반응형
LIST
'Computer Vision > 실습, 세미 프로젝트' 카테고리의 다른 글
[Object Detection] YOLO v4 custom 데이터로 학습 후 webcam으로 확인하기 (2) | 2020.10.23 |
---|---|
[Object Detection] YOLO v4 설치 및 demo 실행 : window+python 버전 (6) | 2020.10.12 |
[Face Recognition] FaceNet 이용하여 실시간 얼굴 인식하기 (0) | 2020.08.11 |
[Face Recognition] 실시간 얼굴 인식 (dlib, python, opencv) (1) | 2020.08.06 |
[Face Recognition] 실시간 얼굴 인식 (Haar feature 기반 cascade classifier 이용) (0) | 2020.08.05 |
Comments