차근차근/C 83

win8 | vs2010 | tesseract-3.01 | leptonica-1.71

https://code.google.com/p/tesseract-ocr/ tesseract-ocr ver. 3.02 설치http://sehyo88.tistory.com/entry/tesseractocr-ver-302-%EC%84%A4%EC%B9%98 tesseract-ocr 학습데이터 만들기http://sehyo88.tistory.com/entry/tesseractocr-%ED%95%99%EC%8A%B5%EB%8D%B0%EC%9D%B4%ED%84%B0-%EB%A7%8C%EB%93%A4%EA%B8%B0 tesserat-ocr을 이용한 인식 testhttp://sehyo88.tistory.com/entry/tesseratocr%EC%9D%84-%EC%9D%B4%EC%9A%A9%ED%95%9C-%EC%9D%B..

차근차근/C 2015.02.24

CString'에서 'const char *'로 변환문제

검색어 : cstring 에서 const char * 으 로 변환 할 수 없습니다 http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=50&MAEULNo=20&no=916465&ref=916463 char sz[30];CString str = "123하하하"; strcpy(sz, str); // 'strcpy' : 매개 변수 2을(를) 'CString'에서 'const char *'(으)로 변환할 수 없습니다.strcpy(sz, (LPSTR)(LPCTSTR)str); // 에러 안뜨지만 "123하하하"중 1만 들어감 아마도 유니코드 캐릭터셋을 가지는 프로젝트 환경이 아닐까 생각됩니다. char -> TCHAR, strcpy -> _tcscpy 로 변경하여..

차근차근/C 2014.11.28

#error : WINDOWS.H already included. MFC apps must not #include <windows.h>

#error : WINDOWS.H already included. MFC apps must not #include C1189: #error : WINDOWS.H already included 가 발생하네요.. http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=50&MAEULNo=20&no=741802&ref=741786 에러가 나는데 어떻게 해결해야 할지 모르겠어요.. afxv_w32.h(16) : fatal error C1189: #error : WINDOWS.H already included. MFC apps must not #include MFC 프로젝트가 하나 있는데,거기 StdAfx.h에서는 afx.h와 afxwin.h를 사용할 수 없구요..(..

차근차근/C 2014.11.26

전체파일 경로에서 파일명만 추출하기

http://www.purelab.net/zbxe/?mid=guruin&listStyle=webzine&document_srl=43195&sort_index=regdate 1. CString 이용 CStringT Right( __in int nCount ) 함수를 이용한다. ex) CString str = "C:\\test\\file.exe"; CString name = str.Right( str.GetLength() - str.ReverseFind('\\')-1); 2. strchr(), strrchr() 이용 지정한 문자열에서 원하는 문자가 포함되어있는지 확인한다. 원하는 문자를 찾은 경우 찾은 주소를 반환한다. 찾을수 없다면 NULL을 반환한다. ex) char* str ="C:\\test\\fil..

차근차근/C 2014.11.25

하위폴더 검색 및 파일명 출력 진행중

하위폴더 검색 및 파일명 출력 //http://www.devpia.com/MAEUL/Contents/Detail.aspx?BoardID=50&MAEULNo=20&no=433324&ref=433291//릴리즈 모드에서 실행해야함.#include #include #include #include //wcout #ifdef _UNICODE #define tcout wcout #else #define tcout cout #endif using namespace std; void Recurse(LPCTSTR pstr){wcout.imbue(locale("kor")); wcout 1a.while bWorking => 1.strFolderItem => C:/파일경로/test2\...strFileExt => ..find..

차근차근/C 2014.11.25
반응형