본문 바로가기

반치용105

파일 첨부시 인터넷 브라우저(익스플로러, 크롬등) 종료 현상 수정 c:\program files (x86)\Hnc 폴더내에서 HncShellExt64.dll 파일을 찾고(검색) HncShellExt64.old로 바꿔주시면 해결됩니다. https://answers.microsoft.com/ko-kr/ie/forum/ie11-iewindows_10/%EB%A9%94%EC%9D%BC/cb986ea5-4d2e-4907-a1ff-88c6c47f82ee 2020. 4. 3.
[저장]상병 마스터 코드 ICD-10 , 2020년 기준 출처 ftp://ftp.cdc.gov/pub/Health_Statistics/NCHS/Publications/ICD10CM/2020/ 불러오는 중입니다... 년도만 수정하면 다른 년도도 있음. 2020. 4. 3.
이미지 사이즈 일괄 변경 및 자르기 CNN학습용 데이터 만들 때, 사이즈가 다른 파일을 통일 시키고 원하는 부분만 사용하기 위한 코드입니다. import os from PIL import Image # image resize & cutter # resize parameter re_width = 640 re_height = 480 # cutter parameter crop_left = 205 crop_top = 92 crop_right = 545 crop_bottom = 390 for root, dirs, files in os.walk('./'): for idx, file in enumerate(files): fname, ext = os.path.splitext(file) if ext in ['.jpg','.png','.gif']: im =.. 2020. 4. 2.
[저장]mongodb 평가 poc driver : 몽고db 성능평가 https://github.com/johnlpage/POCDriver 2020. 3. 31.
[LabelImg]딥러닝용 이미지 labeling 툴 받기 및 실행 Label Img 1. 프롬프트(anaconda 혹은 파워쉘 등)를 관리자 권한으로 실행 (우측버튼 사용) 2. pip install labelImg (아나콘다 가상환경에서는 설치 오류날 수 있음) 3. labelImg labelImg 에서 img 임. i 부분이 대문자 I Ctrl + u Load all of the images from a directory Ctrl + r Change the default annotation target dir Ctrl + s Save Ctrl + d Copy the current label and rect box Space Flag the current image as verified w Create a rect box d Next image a Previous i.. 2020. 3. 29.
[파이토치]윈도우에서 pycocotools 사용하는 방법 파이토치에서 retinanet 을 구현하기 위해 import 하는 도중 pycocotools가 필요함을 확인했다. 그냥 설치하면? 안된다. 윈도우에 지원하지 않는다. 다음과 같은 절차를 진행해야 한다. 1. pip install cython 2. conda install git 3. pip install "git+https://github.com/philferriere/cocoapi.git#egg=pycocotools&subdirectory=PythonAPI" 아나콘다 프롬프트 상에서 진행해야 한다. 2020. 3. 29.