일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 확률
- Deep learning
- MongoDB
- openCV
- WebGL
- Statistics
- 주일설교
- data science
- 몽고디비
- 빅데이타
- nodeJS
- No SQL
- 통계
- R
- 우리들교회
- 빅데이터
- 김양재 목사
- 빅 데이타
- c++
- 딥러닝
- Artificial Intelligence
- 김양재
- Big Data
- 인공지능
- 빅 데이터
- 김양재 목사님
- 데이터 과학
- node.js
- probability
- Machine Learning
Archives
- Today
- Total
목록matrix (1)
Scientific Computing & Data Science
[OpenCV] reshape 메써드를 이용하여 픽셀 Dimension 변경
reshape 메써드는 메모리 복사 또는 픽셀의 위치 변경 없이 Matrix의 Dimension을 변경합니다.Example Code123456789// open the imagecv::Mat image = cv::imread( YOUR_IMAGE_PATH ); if( image.isContinuous() ) image.reshape( 1, image.cols * image.rows ); // display imagecv::namedWindow( "Image" );cv::imshow( "Image", image );cs reshape 메써드의 첫번째 파라미터는 채널의 새로운 개수이고 두번째 파라미터는 행(rows)의 새로운 개수입니다. 열(columns)의 개수는 자동으로 계산됩니다.
Programming/OpenCV
2015. 3. 3. 01:01