전체 글(752)
-
Django group by Count함수, order by(정렬)
쿼리 select char,count(char) total from Trained_Box where status='registered' group by char order by total desc 결과 def dashboard(request) : template = 'ocr/dashboard.html' chars = Trained_Box.objects.filter(status='registered').values('char').annotate(total=Count('char')).order_by('-total') print(chars) results = { 'results' : chars } print(results) return render(request, template, results)
2021.04.03 -
Django context must be a dict rather than QuerySet.
render에 QuerySet을 전달해서 발생한 오류 def dashboard(request) : template = 'ocr/dashboard.html' chars = Trained_Box.objects.filter(status='registered').values('char').annotate(total=Count('char')).order_by('-total') return render(request, template, chars) 결과 수정 def dashboard(request) : template = 'ocr/dashboard.html' chars = Trained_Box.objects.filter(status='registered').values('char').annotate(total=Co..
2021.04.03 -
Spring boot thymeleaf 적용
1. pom.xml org.springframework.boot spring-boot-starter-thymeleaf 2. application.propertiesspring.thymeleaf.prefix=classpath:templates/spring.thymeleaf.suffix=.html#개발모드에는 false 셋팅spring.thymeleaf.cache=falsespring.thymeleaf.view-names=thymeleaf/*3. Controller @GetMapping("/cors.do") public String cors(Model model) { # /resources/templates/thymeleaf/cors.html을 찾음 return "thymel..
2021.03.31 -
Spring boot Cors 셋팅 주의점
아무리 셋팅을 해도 적용이 안되서 패키지 위치를 main()함수가 있는 패키지 아래에 위치 시키니 적용됨 package com.example.demo.config가 중요함 package com.example.demo.config; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.CorsRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration public class WebConfig implements WebMvcConfigu..
2021.03.31 -
ERR_ABORTED 404(Not Found)
오타로 인해 해당 URL을 찾지 못함 lastest.js -> laest.js로 변경 필요
2021.03.30 -
Tesseract text2image
--char_spacing 1 : 글자간의 간격을 1로 셋팅 --find_fonts : 폰트를 찾아서 실행 --outputbase ./work/output/ : 해당 위치에 결과 이미지 생성(마지막에 '/'가 없으면, 디렉토리 제대로 찾지 못함) text2image --text ./work/words.txt --outputbase ./work/output/ --fontconfig_tmpdir ./work/tmp --fonts_dir C:/Windows/Fonts --char_spacing 1 --find_fonts
2021.03.28