분류 전체보기
[Tesseract-OCR] 이미지에서 원하는 부분만 추출
정형화 된 문서이고 심지어 스캔본인데 인식률이 좋지 못하다ㅠㅠ from os import listdir from os.path import isfile, join import numpy import cv2 import numpy as np import sys sys.stdout = open(r'C:\Users\user\Desktop\output.txt','w') #프린트된 출력물을 해당 경로 텍스트 파일로 저장함. a는 이어쓰기이고 w는 덮어쓰기 mypath=(r'C:\Users\user\Desktop\ocr') #이미지 5장이 들어있는 폴더 경로 onlyfiles = [ f for f in listdir(mypath) if isfile(join(mypath,f..
[python] sw expert academy
1. 2072. 홀수만 더하기 T = int(input()) for i in range (T): number = list(map(int, input().split())) odd_num = [num for num in number if num % 2 == 1] print("#{} {}".format(i+1,sum(odd_num))) 2. 2070. 큰 놈, 작은 놈, 같은 놈 T = int(input()) for i in range (T): a,b = map(int, input().split()) if a == b: print("#{} {}".format(i+1,"=")) elif a > b: print("#{} {}".format(i+1,">")) else: print("#{} {}".format(i+1,"
[MariaDB] 이모지 저장하기 위해 인코딩 확인
디비를 다운시키고 난 하루 고생한 뒤 이모지를 띄우는데 성공 역시 뭐든지 한번에 되는일은 없나보다😭 1. mariadb character set 확인 (제대로 모두 utf8bm4로 되어있음을 확인) MariaDB [mydb]> show variables like 'c%'; +--------------------------+----------------------------+ | Variable_name | Value | +--------------------------+----------------------------+ | character_set_client | utf8mb4 | | character_set_connection | utf8mb4 | | character_set_datab..
DB야 제발 살아나...
내가 뭘 잘못했다고 ㅠㅠㅠ죽어버렸어..... ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2 "No such file or directory") 도대체 무슨 패스워드를 치라는건지 아무것도 설정해놓은게 없어서 엔터 쳤는데 안된다. 인코딩 좀 바꿔보겠다고 했다가 디비를 날린 나 ㅠㅠ 분명 해결할 수 있는 방법이 있었을텐데 눈물난다. 계속 소켓 경로 문제라 그래서 이것저것 .cnf 파일 수정하구 복구하고 난리를 쳤는데 안돼서 결국 살리지 못했다. 이유가 뭐였을까 그래서 mariadb 완전 삭제 후 처음부터 다시 시작하기로 했다.. 재설치 후 디비 연동하..