Skip to content

Commit 48615cd

Browse files
committed
added info cv
1 parent 92137e8 commit 48615cd

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
*.ipynb

learner/learner.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
import sys
77
import os
88
import time
9-
import cv2 # http://seeb0h.github.io/howto/howto-install-homebrew-python-opencv-osx-el-capitan/
9+
import cv2 # install cv3, python3: http://seeb0h.github.io/howto/howto-install-homebrew-python-opencv-osx-el-capitan/
10+
# add to profile: export PYTHONPATH=$PYTHONPATH:/usr/local/Cellar/opencv3/3.2.0/lib/python3.6/site-packages/
1011
import numpy as np
1112
from scipy.spatial import distance
1213
import argparse

visor/visor.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
import sys
44
import os
55
import time
6-
import cv2 # http://seeb0h.github.io/howto/howto-install-homebrew-python-opencv-osx-el-capitan/
6+
import cv2 # install cv3, python3: http://seeb0h.github.io/howto/howto-install-homebrew-python-opencv-osx-el-capitan/
7+
# add to profile: export PYTHONPATH=$PYTHONPATH:/usr/local/Cellar/opencv3/3.2.0/lib/python3.6/site-packages/
78
import numpy as np
89
import argparse
910
import torch

0 commit comments

Comments
 (0)