일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 빅데이타
- Big Data
- R
- Machine Learning
- 확률
- No SQL
- 김양재 목사님
- Artificial Intelligence
- MongoDB
- 몽고디비
- 빅 데이타
- openCV
- data science
- 인공지능
- Statistics
- probability
- WebGL
- c++
- 통계
- 김양재
- Deep learning
- 딥러닝
- 우리들교회
- 빅데이터
- 주일설교
- 데이터 과학
- 김양재 목사
- node.js
- nodeJS
- 빅 데이터
Archives
- Today
- Total
Scientific Computing & Data Science
[Scientific Computing / Image Processing] R의 EBImage 라이브러리를 이용하여 랜덤 이미지 생성하기 본문
Scientific Computing/Image Processing
[Scientific Computing / Image Processing] R의 EBImage 라이브러리를 이용하여 랜덤 이미지 생성하기
cinema4dr12 2017. 6. 23. 23:12by Geol Choi |
R의 EBImage 라이브러리 패키지를 이용하여 랜덤 컬러 이미지 생성하는 법을 소개한다.
EBImage 패키지 설치 및 로딩
1 2 3 4 5 | ## try http:// if https:// URLs are not supported source("https://bioconductor.org/biocLite.R") biocLite("EBImage") base::require(EBImage) | cs |
이미지 사이즈 정의
1 2 | nWidth <- 200 nHeight <- 150 | cs |
랜덤 컬러 이미지 생성
1 | img <- Image(stats::rnorm(nWidth*nHeight*3), dim=base::c(nWidth,nHeight,3), colormode='Color') | cs |
이미지 디스플레이
1 | EBImage::display(x=img, method="raster") | cs |
이미지 저장 및 결과
1 2 | EBImage::display(x=img, method="raster") EBImage::writeImage(x=img, files="./random_color.png", quality=100) | cs |
'Scientific Computing > Image Processing' 카테고리의 다른 글
[Scientific Computing / Image Processing] R에서 병렬처리 하기 (0) | 2017.01.15 |
---|---|
[Programming / Image Processing] Binary Image를 Text 파일로 변환하기 (0) | 2016.06.10 |
[Image Processing] Edge Detector / Laplacian (0) | 2014.06.07 |
[Image Processing] Edge Detector / Homogeneity Operator (0) | 2014.06.07 |
[Image Processing] Sharpening (0) | 2014.06.06 |
Comments