250x250
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 |
Tags
- 선형회귀
- python
- CLI
- 딥러닝
- 크롤링
- API
- 프로그래머스
- 회귀
- Linear
- 주식연습
- 코딩
- 가격맞히기
- 머신러닝
- Regression
- 주가예측
- 흐름도
- 게임
- 코딩테스트
- DeepLearning
- 템플릿
- 재귀함수
- PyTorch
- 알고리즘
- 주식
- 기초
- 파이썬
- 추천시스템
- 연습
- 주식매매
- tensorflow
Archives
- Today
- Total
목록텍스트 인식 (1)
코딩걸음마
구글 Vision API로 이미지 내 텍스트를 인식하기! (파이썬)
from urllib.parse import urlsplit, quote #url 인코더 def transfrom_url(url): url_info = urlsplit(url) encoded_url = f'{url_info.scheme}://{url_info.netloc}{quote(url_info.path)}' return encoded_url def detect_text_url(uri): """Detects text in the file located in Google Cloud Storage or on the Web. """ from google.cloud import vision import os os.environ['GOOGLE_APPLICATION_CREDENTIALS'] = " *******..
꿀팁 소스코드 저장소
2022. 10. 25. 10:14