1. Rt, mention 테이블 자료 넣기.
2. 겹치는 자료 무시하고 제대로 넣기.
3. 겹치는 자료 까지 직전까지만 넣기.
1. Rt, mention 테이블 자료 넣기.
2. 겹치는 자료 무시하고 제대로 넣기.
3. 겹치는 자료 까지 직전까지만 넣기.
[bikelab]
- 수업
1. 신경망 응용 사례 세미나 준비, 신경망 공부.
2. 의학용어표현이론 과제.
3. SAS 사용법 및 기초 통계학 공부.
- 스터디
1. 수요일 못한 부분 혼자 보기.
- 프로젝트
1. Twitter 정상화.
2. Retweet, mention 처리 및 데이터 쌓기.
- 논문
1. 서문 적기 및 논문 보기.
2. 사용 가능한 API 리스트 작성.
[SSM]
1. 전면 카메라 화면 캡쳐. frame buffer? or what?
2. OpenCV NDK..
asdfasdf
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;
}