work list
2010-10-07 08:11:30

[bikelab]

- 수업

1. 신경망 응용 사례 세미나 준비, 신경망 공부.

2. 의학용어표현이론 과제.

3. SAS 사용법 및 기초 통계학 공부.

- 스터디

1. 수요일 못한 부분 혼자 보기.

- 프로젝트

1. Twitter 정상화.

2. Retweet, mention 처리 및 데이터 쌓기.

- 논문

1. 서문 적기 및 논문 보기.

2. 사용 가능한 API 리스트 작성.

[SSM]

1. 전면 카메라 화면 캡쳐. frame buffer? or what?

2. OpenCV NDK..

▼ more
asdf
2010-10-07 05:15:30

asdfasdf

▼ more
getGlyphUnicodesFromSheetImage
2010-10-05 17:10:59

private Int32[] getGlyphUnicodesFromSheetImage(String userID, String sheetID)

{

Int32[] unicode = new Int32[rectNumber];

if (rectNumber == 86)

{

int i;

//0

for (i = 0; i < 19; i++)

{

unicode[i] = i * (-2);

}

//19

for (int j = 0; j < 19; j++, i++)

{

unicode[i] = (j * 2 + 1) * (-1);

}

//19

for (int j = 0; j < 21; j++, i++)

{

unicode[i] = (j + 100) * (-1);

}//21

for (int j = 0; j < 27; j++, i++)

{

unicode[i] = (j + 201) * (-1);

}//27

}

else if (rectNumber == 52)

{

//engUnicode

string engUnicodeString = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";

unicode = new int[engUnicodeString.Length];

for (int i = 0; i < unicode.Length; i++)

{

unicode[i] = (int)engUnicodeString.ToCharArray()[i];

}

}else if(rectNumber==42){

//custom Unicode

string cusUnicodeString = "0123456789~!@#$%^&*()_+|{}:\"<>?`-=\\[];',./";

unicode = new int[cusUnicodeString.Length];

for (int i = 0; i < unicode.Length; i++)

{

unicode[i] = (int)cusUnicodeString.ToCharArray()[i];

}

unicode = new int[cusUnicodeString.Length];

for (int i = 0; i < unicode.Length; i++)

{

unicode[i] = (int)cusUnicodeString.ToCharArray()[i];

}

}

// unicode[86] = '⒂';

// unicode[87] = '⒂';

return unicode;

}

▼ more
창의과제
2010-10-05 11:26:46

The last day..

I have to solve these issues.

1. IIS to database

2. file upload on IIS

3. some small issues..

▼ more