레필리아
레필리아의 잡동사니

전체 글

컴퓨터공학 리서치/공개

dw2pdf 한글 글꼴(CJK font) 설정

dw2pdf는 도쿠위키 플러그인 중 위키문서를 PDF로 출력하게 도와주는 플러그인이다. 해당 플러그인을 설치해보고 사용해보면,한글 출력이 안되거나 출력은 되지만 글꼴이 엉망인 경우가 있다. 현재 인터넷에 퍼져있는 정보가 대부분 예전 버전용이라 해결이 되지 않은 경우가 많은데,2016년 4월 17에 릴리즈 된 버전을 기준으로 설명하도록 하겠다. [doku_root]\lib\plugins\dw2pdf\DokuPDF.class해당 파일을 열어보면 switch($conf['lang']) { 으로 시작하는 구문이 존재한다. ( line #33 )해당 switch 문의 case 'ko': 를 살펴보면 $mode='+aCJK'; 라고 되어 있는데,이를 $mode='-aCJK'; 로 변경해준다. switch($conf..

컴퓨터공학 리서치/공개

CMakeLists.txt를 사용하여 OpenCV 링크하기

CLion 사용시 외부라이브러리(e.g. OpenCV) 링크가 불편하다.일반적인 방법으로 아래와 같은 형식으로 CMakeLists.txt를 작성하게 된다. cmake_minimum_required(VERSION 3.2)project(PlateDetection1) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") # set dir for header and libraryinclude_directories(/usr/local/lib/opencv-3.0.0/include)link_directories(/usr/local/lib/opencv-3.0.0/lib) # sources and libsset(SOURCE_FILES main.cpp PlateDetection.c..

컴퓨터공학 리서치/공개

우분투(ubuntu) 환경변수 설정방법

Persistent environment variablesSo far we've only discussed ways set an environment variable value temporarily until the shell session in which it was set is closed. One may wonder if there is a way to somehow permanently set an environment variable to a certain value.Session-wide environment variablesSuitable files for environment variable settings that should affect just a particular user (rat..