일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 데이터분석
- pytorch
- 유데미
- 코딩애플
- 크롤링
- 42서울
- 지정헌혈
- Flutter
- CV
- Computer Vision
- 인공지능
- 앱개발
- 딥러닝
- 모델
- 머신러닝
- 선형대수학
- 자연어처리
- map
- 플러터
- Regression
- 42경산
- 선형회귀
- 파이썬
- 회귀
- filtering
- AI
- 피플
- 크롤러
- mnist
- RNN
- Today
- Total
목록filtering (3)
David의 개발 이야기!

A. Linear Filtering 1. Linear Filter란? A linear filter performs a sum-of-products operation between an image f and a filter (or kernel, or mask) w. The kernel w is an array whose size defines the neighborhood of opertation, and whose coefficient determine the nature of the filter. 2. Linear Filters 특성 Additivity -> 선형 필터가 두개 이상의 입력신호를 결합할 때, 각 신호에 대한 필터의 출력을 단순히 합해서 전체출력을 계산할 수 있다. Homogeneity -..

1. Image 란? Each point in matrix called a "Pixel" A pixel has a 2D coordinate A pixel has a value (intensity) A pixel Value indicates amount of light High Pixel Value == more light Lower Pixel Value == less light A pixel value is bounded No light (black) = 0 Sensor limit (white) = max Typical ranges: 0-255 : fit into byte 0-1 : floating point 2. Filtering Filtering modifies an image by replacing..

OpenCV 는 영상처리와 컴퓨터 비전을 위한 오프소스 라이브러리이다. C, C++, Python 등에서 사용 가능하다. [관련함수 소개] 1. cv2.imread(file_name, flag) 2. cv2.imwrite(file_name, flag) 3. cv2.resize(image, dsize, fx, fy, interpolation) 4. cv2.warpAffine(image, M, dsize) 4. cv2.getRotationMatrix2D(center, angle, scale) 5. cv2.add() * Saturation 연산 -> 두개의 이미지를 각각의 픽셀 단위로 덧셈을 한 후, 255보다 큰 경우 255를 픽셀 값으로 설정 (250 + 7 = 257 -> 255) * Modulo 연산 ..