Computer Science
git 사용을 위한 Sourcetree 설치 (for window)
Sourcetree를 구글에 검색하면 맨 처음 나오는 사이트가 있는데요 바로 Sourcetree를 다운로드 할수 있는 사이트입니다. Sourcetree 를 만든 회사가 Atlassian 이라는 회사인데 Sourcetree를 사용하시려면 우리 계정에 가입해주세요 라는 말입니다.
텐서플로우 버전별 정리
나의 컴터 사양 OS: window 10 64bit CPU: intel core i7 7700 GPU: GTX 1080 Ti (compute capability 6.1) Python: 3.6.2 tensorflow-gpu: 1.8 CUDA: 9.2 cuDNN: 7.2.1 keras: 2.1.6 Anaconda3: 4.4.0 pycham 18.2.2 출처: https://www.tensorflow.org/install/install_sources#common_installation_problems
grid size 조절하는 방법에 대하여
효과적으로 해상도(grid size)를 줄이는 방법 grid 크기를 줄이는 대표적인 방식은 stride를 1 이상으로 설정하거나 pooling을 사용하는 것이다. 먼저 pooling을 사용할 경우, 왼쪽의 경우(conv보다 pooling을 먼저 적용) 연산량 관점에서는 효율적이지만 pooling 을 거치면서 feature map에 숨어 있는 정보(representational concept)가 사라지는 반면, 오른쪽의 경우 (conv보다 pooling을 나중에 적용) 왼쪽에 비해 연산량이 4배가 많다. 이에 Szegedy는 다음 구조를 제시했다. (Rethking the inception architecture for computer vision 논문) 기존 Inception 모듈의 최종 단에 strid..
pycham에서 cv2 라이브러리 설치 시 에러 (pip 버전 문제)
에러 문구 Collecting cv2 Cache entry deserialization failed, entry ignored Could not find a version that satisfies the requirement cv2 (from versions: ) No matching distribution found for cv2 You are using pip version 9.0.1, however version 20.0.2 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command. -- 해결법 pycharm에서 pip 최신버전으로 업데이트 하려고 해도 잘 안된다.(이유는 모르겟지..
Morphology(모폴로지;형태학) - gray scale image
1. dilation(팽창)이미지 밝기값에서 구조연산자의 값을 더한 후 그 중 최대값을 선택해 계산을 수행효과: dark detail reduce, 전체적으로 밝아짐 2. erosion(침식)이미지의 밝기값과 구조연산자값의 차이 중 최소값을 선택해 계산을 수행효과: 전체적으로 어두워짐 3. opening(열기)효과: 거뭇거뭇한 그림에 사용함 4. closing(닫기) 효과: 백색잡음에 사용 (a) original (b) dilation (c) erosion (e) opening (e) closing