파이썬(156)
-
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 -
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 -
Django Admin list_display에 custom link 추가
list_display = ['id','linkImage',] def linkImage(self, obj) : url = reverse('admin:ocr_trained_image_change', args=[obj.image]) return format_html("{}",url,obj.image) linkImage.short_description = 'Image' list_display = ['id','popup_gantt','manager'] def popup_gantt(self, obj) : return format_html("{}", obj.id,obj.name)
2021.02.11 -
Django DB에 이미지 저장 및 가져오기
image_data = models.BinaryField(null=True) box.image_data = base64.b64encode(output.getvalue()) if self.image_data != None : return format_html("",self.image_data.decode('UTF-8'))
2021.02.11