분류 전체보기(759)
-
Django django.db.utils import OperationalError
filter 결과가 없는 경우 발생 boxes.count()를 실행하면 예외 발생 try : boxes.count() train.makeImage(boxes, 'special') except OperationalError : print('테이터가 없습니다.')
2021.03.10 -
Spring Boot jsp 호출이 안되는 경우
원인은 잘 모르겠고, 일단 아래와 같이 했을 때 해결됨 DemoApplication의 패키지 위치 변경 : 해결 안됨 Maven Install 수행 : repackage 오류인하여 수행 안됨 pom.xml에 아래 내용 추가 11 ABCApplication.package.main
2021.03.10 -
Spring Boot에서 html과 jsp 중 어느 것이 더 먼저 인식이 될까?
/static/index.html /WEB-INF/jsp/index.jsp 위 2개가 셋팅된 상태에서 localhost:8080으로 호출하면, index.html이 호출됨
2021.03.10 -
Tesseract TR 생성시 인식률 높이기
'-- psm 8'을 추가해 줬을 때, 좀더 많은 문자를 제대로 인식함'-- psm 8'을 추가해 줬을 때, 좀더 많은 문자를 제대로 인식함 cmd = "tesseract %s %s --psm 8 nobatch box.train" %(file,file[:file.rfind('.')]) 아래 Fail을 줄일 수 있음 FAIL! APPLY_BOXES: boxfile line 184/: ((2135,9883),(2139,9906)): FAILURE! Couldn't find a matching blob
2021.03.08 -
Spring Boot War를 local Tomcat 서버에 이관
SpringBootServletInitializer를 상속받도록 처리 SpringApplicationBuilder를 override package com.example.demo; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.boot.builder.SpringApplicationBuilder; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.Reques..
2021.03.08 -
unsupported operand type(s) for -: 'NoneType' and 'NoneType'
models.py에 아래와 같이 있고, def getHeight(self) : return self.coords_4 - self.coords_2 admin.py에서 관련 model을 아래와 같이 TabularInline로 호출하는 경우 fields = ['id','getBoxLink','char','getHeight','coords_1','coords_2','coords_3','coords_4','page'] 저런 에러가 발생함 getHeight에 로그를 찍어보니, 마지막 row 뒤에 None으로 row가 하나 더 찍힘 아래와 같이 해결함 정확한 원인은 모르겠음 def getHeight(self) : if self.id != None : return self.coords_4 - self.coords_2 ..
2021.03.07