일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 빅 데이타
- Statistics
- 통계
- 확률
- data science
- nodeJS
- 빅데이타
- MongoDB
- No SQL
- node.js
- 우리들교회
- 김양재
- Deep learning
- 주일설교
- Machine Learning
- R
- c++
- probability
- 데이터 과학
- WebGL
- 몽고디비
- openCV
- Artificial Intelligence
- 인공지능
- 딥러닝
- 빅데이터
- 빅 데이터
- Big Data
- 김양재 목사
- 김양재 목사님
Archives
- Today
- Total
목록에지 검출 (1)
Scientific Computing & Data Science
[Image Processing] Edge Detector / Homogeneity Operator
MATLAB CODE: "HomogeneityOperator.m" function HomogeneityOperator %% read an image img = imread('./res/test_02.jpg'); imshow(img); img = rgb2gray(img); subplot(2,1,1); [nrow, ncol] = size(img); img = cast(img, 'double'); newImg = zeros(nrow,ncol); % Corners i = 1; j = 1; tmp(1) = abs(img(i,j) - img(i,j+1)); tmp(2) = abs(img(i,j) - img(i+1,j+1)); tmp(3) = abs(img(i,j) - img(i+1,j)); newImg(i,j) =..
Scientific Computing/Image Processing
2014. 6. 7. 11:26