일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
Tags
- c++
- digitalRead
- length
- parameter
- Unity
- Class
- sensor
- Overloading
- java
- flutter
- SERIAL
- atmega328
- aduino
- Android
- wpf
- compare
- inheritance
- Pointer
- Encapusulation
- UNO
- memory
- Read
- preprocessing
- Contour
- mfc
- APP
- file access
- stream
- public
- Barcode
Archives
- Today
- Total
목록2025/03 (2)
폴크(FOLC)

8bit - gray scale 이미지를 24bit color scale 이미지로 표현하는 color map 데이터가 매우 많이 제공한다. OpenCV 에서 기본으로 제공하는 데이터도 있지만 상용 라이브러리들이 제공하는 여러가지 데이터들이 많이 있다. // 컬러맵 룩업 테이블 초기화 (실제 값으로 채워야 함) std::vector matlabColormap(256); void initializeAfmhotColormap() { for (int i = 0; i if (i matlabColormap [i] = cv::Vec3b(0, 0, static_cast(i * 3)); } else if (i matlabColormap [i] ..
C, C++, MFC
2025. 3. 29. 11:36

무료로 사용할 수 있는 버전들은 아래와 같이 대략 6가지 정도이다.각 컨트롤마다 완전 무료로 공개된 버전도 있지만 64비트에서만 유료로 지원하는 버전도 있다.1. MFC Grid Control (CGridCtrl) - 2015년 2.27 버전2. Ultimate Grid - 2007년 버전 7.3 (2013년에 코드 공개)3. CGridListCtrlEx - 2016년 2.4 버전4. CQuickList - 2006년5. ALX Grid Control - 2025년6. Dapfor MFC Grid - 2010년 2.3.2 버전
C, C++, MFC/C, C++, MFC 테크닉
2025. 3. 29. 10:43