LaTeX math operators and functions


자주 사용하는 operator와 함수를 정리해둔다.

% Define argmin and argmax operators
\DeclareMathOperator*{\argmin}{\arg\!\min}
\DeclareMathOperator*{\argmax}{\arg\!\max}

% Define trace operator
\DeclareMathOperator*{\trace}{Tr}

% Define expectation operator
\DeclareMathOperator*{\expect}{E}

% Define variance operator
\DeclareMathOperator{\var}{var}

% Define covariance operator
\DeclareMathOperator{\cov}{cov}

% Define signum function operator
\DeclareMathOperator{\sgn}{sgn}

%\newcommand{\covariance}[1]{\operatorname{cov} \left( #1 \right)}
%\newcommand{\expectation}[1]{\operatorname{E} \left[ #1 \right]}

참고

vert vs. mid


Authored by Seonho Oh.
Published on 02 December 2014.
Category: Writing
Tags: latex , math , operator


건물 도면 출력하기


세움터에서 출력이 가능하다.

아래와 같이 총 세 종류의 서류를 열람 또는 발급 할 수 있다.

  • 총괄표제부
  • 표제부
  • 전유부

건물 도면은 전유부의 건축물현황도에서 확인할 수 있다.

ps. 건물이 1995년 이전에 지어졌다면 해당 도면이 없다고 한다. 이 경우는 실측하는 수 밖에 없다.


Authored by Seonho Oh.
Published on 26 August 2014.


MEX compile error: unknown type name 'char16_t'


아래와 같은 오류가 나온다면

In file included from /Applications/MATLAB_R2013a.app/extern/include/mex.h:58:
In file included from /Applications/MATLAB_R2013a.app/extern/include/matrix.h:294:
/Applications/MATLAB_R2013a.app/extern/include/tmwtypes.h:819:9: error: unknown type name 'char16_t'
typedef char16_t CHAR16_T;

다음과 같이 하자.

cd /Applications/MATLAB_R2013a.app/bin
system('cp mexopts.sh mexopts.org.sh')
edit mexopts.sh

CXXFLAGS를 찾아서 끝부분에 -std=c++11을 추가한다.

저장 후, mex -setup을 수행한다.

Reference


Authored by Seonho Oh.
Published on 14 August 2014.
Category: Programming
Tags: matlab , char16_t , compile , error , mex


Human Pose Dataset


Datasets

Human Pose Datasets

  • Poses in the Wild [link]
  • Frames Labeled In Cinema (FLIC) [link]
  • Video Pose 2 [link]
  • Video Pose [link]
  • Leeds Sports Pose Dataset [link]
  • Buffy Stickmen V3.01 [link]
  • ETHZ PASCAL Stickmen V1.11 [link]
  • Humans in 3D (H3D) [link]
  • PARSE [link]
  • HumanEva [link]

Human Pose Class Dataset

  • Buffy Pose Classes [link]

Synchronous Activity Dataset

  • Synchronic Activities Stickmen V1.0 [link]

Reference

TBU

For other dataset, see http://www.cvpapers.com/datasets.html


Authored by Seonho Oh.
Published on 13 August 2014.
Category: Research
Tags: dataset , human , pose


jekyll-scholar 사용하기


논문 인용하기

본문중에서 다음과 같이 하면 된다.

{% cite oh2013fit -f my/oh2013fit %}

참고문헌 넣기

{% bibliography -f my/oh2013fit.bib %}

Authored by Seonho Oh.
Published on 31 July 2014.


Markdown을 이용한 연구 포스팅 작성하기 예제


Following code is typical header for research post.

--- header begins with ---
layout: post
category: research
title: Visual Surveillance
title: Your research title, e.g., Visual Surveillance.
teaser: Your research thumbnail will be shown in the research page, e.g., /img/research/vissurv/teaser.png
collaborators: [Seon Ho On, Sajid Javed, Jae Ho Goo, Soon Ki Jung]
--- header ends with ---

Your contents here
...

We use markdown for ease of use.

For more details, please see GitHub Flavored Markdown and my example


Authored by Seonho Oh.
Published on 29 July 2014.
Category: Writing
Tags: gfm , markdown


LaTeX에서 draft 문서 표시하기


draftwatermark 패키지는 LaTeX에서 draft watermark를 추가할 수 있게 해준다.

아래와 같이 사용하면 되겠다.

\usepackage{draftwatermark}
\SetWatermarkAngle{45}
\SetWatermarkText{DRAFT}

Authored by Seonho Oh.
Published on 16 June 2014.


Package manager for OS X


MacPorts vs. Homebrew

정리 중

참고

잘가 MacPorts. 반갑습니다. Homebrew.
Homebrew 로 OS X 패키지 관리하기


Authored by Seonho Oh.
Published on 04 June 2014.


Public source code repositories


This is collections of public source code for human pose estimation and 3D reconstruction from monocular video.

Human Pose Estimation Source Code Repositories

Articulated Trajectory Reconstruction

Temporal Alignment

Dense Trajectory

Optical Flow Source Code Repositories

  • To be inserted.

Authored by Seonho Oh.
Published on 26 May 2014.


LaTex에서 생성할 pdf 문서에 comment 추가하기


pdfcomment 패키지는 LaTeX에서 pdf 파일에 annotation과 comment를 추가할 수 있게 해준다.

사용하려면 다음과 같이 하자.

\usepackage[author={편집자 이름}]{pdfcomment}
% optional
\usepackage[rgb]{xcolor} % color 이름을 사용할 수 있도록 함

몇 가지 명령을 소개하면

  • \pdfcomment: 현재 위치에 comment 추가.
    • avatar, icon, subject, author, opacity, open 등의 옵션 지정 가능.
  • \pdfmarkupcomment: 선택된 영역에 밑줄, 취소선, highlight와 함께 comment를 추가.
    • markup, color를 지정할 수 있다.

사용예

\pdfmarkupcomment[markup=StrikeOut, color=red]{이 문장은 취소선으로 표시됩니다.}{여기에 comment를 작성합니다.}

\pdfmarkupcomment[markup=Underline, color=red]{이 문장은 밑줄 표시됩니다.}{여기에 comment를 작성합니다.}

\pdfmarkupcomment[markup=Highlight, color=yellow]{이 문장은 highlight로 표시됩니다.}{여기에 comment를 작성합니다.}

참고

도은님의 pdfcomment 소개


Authored by Seonho Oh.
Published on 22 May 2014.
Category: Writing
Tags: latex , package , pdfcomment


© Copyright2014-2015