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 | 31 |
Tags
- 파이썬
- PyTorch
- python
- tensorflow
- 주가예측
- 알고리즘
- 게임
- 회귀
- 선형회귀
- 연습
- 주식연습
- 프로그래머스
- 머신러닝
- 재귀함수
- 주식매매
- 기초
- 템플릿
- 가격맞히기
- Regression
- 코딩테스트
- 추천시스템
- 흐름도
- Linear
- 코딩
- 딥러닝
- 크롤링
- DeepLearning
- CLI
- API
- 주식
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