일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- r
- data
- gitignore
- git
- 가중치
- Repository
- Java
- model
- 이미지
- 머신러닝
- imread
- list
- destroyallwindows
- Spring
- Linux
- CLONE
- branch
- datascience
- 함수
- tensorflow
- Python
- Session
- opencv
- 파이썬
- 저장소
- Vector
- imshow
- db
- Anaconda
- AI
- Today
- Total
목록Python (25)
AI학교

https://github.com/UB-Mannheim/tesseract/wiki에 들어가서 tesseract-ocr-w64-setup-v5.0.0-alpha.20191030.exe (64 bit) resp. 를 다운받아줍니다. 실행시키고 싶은 환경에서 activate ㅇㅇ conda install -c conda-forge pytesseract conda install -c conda-forge tesseract 두개를 설치해 줍니다.

배경을 흰색, 폰트를 검정색으로 했을 때 배경을 검정색, 폰트를 흰색으로 했을 때 erode : 필터에서 가장 어두운 값으로 변환된다. (침식) -> 작은 노이즈들을 제거하는데 사용한다. eilate : 필터에서 가장 밝은 값으로 변환된다. (팽창) -> 객체를 추출했을 때 작은 부분객체들을 큰 객체로 합칠 때 사용한다.

***test_env이름을 bitopencv로 바꿔줬습니다. C:\Users\96041\Anaconda3\envs\bitopencv\lib\site-packages\pyreadline\lineeditor\history에서 encoding을 고쳐주라고 하네요! encoding='UTF8'을 추가해주자 정상적으로 실행됩니다.

import tensorflow as tf 텐서플로를 사용하기 위해 import해줍니다. mathScore = [85, 99, 84, 97, 92] englishScore = [59, 80, 84, 68, 77] mathScores에 5명의 수학 점수를 입력해줍니다. englishscore에 5명의 영어 점수를 입력해줍니다. a = tf.placeholder(dtype=tf.float32) b = tf.placeholder(dtype=tf.float32) placeholder라는 그릇을 a, b 로 두개 만들어 줍니다. y = (a + b) / 2 y라는 평균값을 만들어줍니다. sess = tf.Session() session을 설정해주고 init = tf.global_variables_initializ..

https://www.virtualbox.org https://www.ubuntu.com/ - 데스크탑용 https://putty.org - 운영체제 접속 Oracle VM VirtualBox Welcome to VirtualBox.org! News Flash New October 15th, 2019VirtualBox 6.0.14 released! Oracle today released a 6.0 maintenance release which improves stability and fixes regressions. See the Changelog for details. New September 4th, 2019VirtualBox 6.0.12 www.virtualbox.org The leading ope..

import json text -> json -> python객체 타입처럼 변환이 가능합니다.(list dictionary)