분류 전체보기(754)
-
Django PostgreSQL 연동시 에러
connection 정보중 일부가 정확하지 않아서 생긴 문제 conn = _connect(dsn, connection_factory=connection_factory, **kwasync) django.db.utils.OperationalError
2021.02.19 -
Django filter 특징
BinaryField는 filter 적용 안됨 null은 ''로 인식됨 : filter(a='')
2021.02.17 -
이미지 임계처리
opencv-python.readthedocs.io/en/latest/doc/09.imageThresholding/imageThresholding.html 이미지 임계처리 — gramman 0.1 documentation 기본 임계처리 이진화 처리는 간단하지만, 쉽지 않은 문제를 가지고 있다. 이진화란 영상을 흑/백으로 분류하여 처리하는 것을 말합니다. 이때 기준이 되는 임계값을 어떻게 결정할 것인지가 중 opencv-python.readthedocs.io
2021.02.13 -
사진속 글자 검출 참조
d2.naver.com/helloworld/8344782
2021.02.13 -
canvas 확대/축소
jQuery를 사용해서 변경해야 canvas가 실제 사이즈가 변경되지 않고, 보이기에만 확대/축소됨 $('#box').width(canvas.width*zoom)
2021.02.12 -
Django Admin change_form.html에 버튼 추가 및 저장시 custom 작업 수행
{% block submit_buttons_bottom %} {{ block.super }} {% endblock %} def response_change(self, request, obj): if "_gotoTrainedBoxes" in request.POST or "_gotoTrainedBoxes(include Image)" in request.POST : if "_gotoTrainedBoxes(include Image)" in request.POST : Trained_Image.createImageData(obj) opts = self.model._meta msg = format_html('The Trained_Image “{}” was changed successfully.', obj.id) se..
2021.02.12