일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Machine Learning
- 김양재
- Deep learning
- node.js
- Artificial Intelligence
- WebGL
- 인공지능
- 딥러닝
- 빅 데이타
- 통계
- 주일설교
- 빅데이터
- 데이터 과학
- R
- Statistics
- openCV
- probability
- MongoDB
- nodeJS
- 몽고디비
- 김양재 목사
- 확률
- 빅 데이터
- data science
- 김양재 목사님
- No SQL
- 빅데이타
- c++
- 우리들교회
- Big Data
- Today
- Total
목록imshow (2)
Scientific Computing & Data Science
Python의 이미지 라이브러리인 pillow를 활용하여 이미지 데이터를 불러온 후, 이 이미지의 픽셀 데이터를 numpy 라이브러리의 array로 저장하는 코드는 다음과 같습니다: 1234567891011import PIL.Image as pilimgimport numpy as np # Read imageim = pilimg.open( {YOUR_IMAGE_PATH} ) # Display imageim.show() # Fetch image pixel data to numpy arraypix = np.array(im)Colored by Color Scriptercs 만약 matplotlib 라이브러리를 활용하여 이미지를 디스플레이 하고자 한다면 다음 코드를 이용하시면 됩니다: 1234567891011im..
개발 환경Microsoft Windows 7Visual Studio V11 (2012)OpenCV 3.0.0Example Code12345678910111213141516171819#include #include #include int _tmain(int argc, _TCHAR* argv[]){ // Read an image cv::Mat image = cv::imread("[YOUR_IMAGE_PATH]"); // Set name of the window cv::namedWindow("My Image"); // Show the window cv::imshow("My Image", image); cv::waitKey(5000); return 0;}Colored by Color Scriptercs