일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- sensor
- digitalRead
- compare
- UNO
- Read
- mfc
- Pointer
- Encapusulation
- java
- atmega328
- APP
- memory
- Android
- Barcode
- preprocessing
- inheritance
- file access
- wpf
- Unity
- flutter
- Overloading
- stream
- Class
- c++
- SERIAL
- aduino
- Contour
- length
- parameter
- public
Archives
- Today
- Total
목록colormap (1)
폴크(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