일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Machine Learning
- Deep learning
- 인공지능
- 김양재
- Big Data
- 빅데이터
- 딥러닝
- 데이터 과학
- data science
- nodeJS
- 주일설교
- R
- Statistics
- 김양재 목사
- WebGL
- MongoDB
- 우리들교회
- No SQL
- node.js
- 통계
- probability
- 확률
- openCV
- 몽고디비
- 빅 데이터
- 김양재 목사님
- 빅데이타
- Artificial Intelligence
- 빅 데이타
- c++
Archives
- Today
- Total
Scientific Computing & Data Science
[OpenCV] reshape 메써드를 이용하여 픽셀 Dimension 변경 본문
reshape 메써드는 메모리 복사 또는 픽셀의 위치 변경 없이 Matrix의 Dimension을 변경합니다.
Example Code
1 2 3 4 5 6 7 8 9 | // open the image cv::Mat image = cv::imread( YOUR_IMAGE_PATH ); if( image.isContinuous() ) image.reshape( 1, image.cols * image.rows ); // display image cv::namedWindow( "Image" ); cv::imshow( "Image", image ); | cs |
reshape 메써드의 첫번째 파라미터는 채널의 새로운 개수이고 두번째 파라미터는 행(rows)의 새로운 개수입니다. 열(columns)의 개수는 자동으로 계산됩니다.
'Programming > OpenCV' 카테고리의 다른 글
[OpenCV] 이미지 Contrast & Brightness 조정하기 (0) | 2015.03.17 |
---|---|
[OpenCV] Low-level Pointer를 사용하여 특정 Pixel에 접근하기 (0) | 2015.03.05 |
[OpenCV] Image Pointer(ptr)를 이용하여 픽셀 접근하기 (0) | 2015.03.01 |
[OpenCV] Reducing Color Space (Quantization) (0) | 2015.02.22 |
[OpenCV] Image를 불러서 Window에 띄우기 (0) | 2015.01.21 |
Comments