1. 중첩(Convolution)
가. 정의
- 두개의 함수가 스펙트럼 영역을 엇갈리게 적분하여 하나의 함수로 융합되는 것
- 중첩은 선형시스템에서 입력에 대한 응답 출력을 구하는 데 사용됨
- 입력을 x(t), 출력을 y(t), 임펄스 응답을 h(t)라고 하면 다음 식으로 표현됨
나. 특징
- 교환법칙 성립(계산 상으로는 시스템과 입력신호 비구분)
- [...]
//
적청반전
var filterObj = new flash.filters.ColorMatrixFilter();
filterObj.matrix = new Array(
0,0,1,0,0,
0,1,0,0,0,
1,0,0,0,0,
0,0,0,1,0);
mc.filters = [filterObj];
//
흑백
var filterObj = new flash.filters.ColorMatrixFilter();
filterObj.matrix = new Array(
1/3,1/3,1/3,0,0,
1/3,1/3,1/3,0,0,
1/3,1/3,1/3,0,0,
0, 0, 0,1,0);
mc.filters = [filterObj];
//
세피아
var filterObj = new flash.filters.ColorMatrixFilter();
filterObj.matrix = new Array(
1/2,1/2,1/2,0,0,
1/3,1/3,1/3,0,0,
1/4,1/4,1/4,0,0,
0, 0, 0,1,0);
mc.filters = [filterObj];
//
샤프
var filterObj = new [...]
출처:http://www.roborealm.com/help/Convolution.php
Convolution Filter
Convolution filters are a great way to process images for certain features. Features are defined by an n by m matrix that is applied to the image in the following way: (grayscale only for purposes of example)
Interface
Instructions
1. [...]
I’ve updated the Deface face recognition library that I created last year to take advantage of the new Vector class and some other improvements.
It should be fast enough for some limited real-time use now. For instance, the demo below typically finds my face in < 80ms [...]
I dreamed about it, they finally did it ^^.
A crazy guy named Ohtsuka Masakazu have ported the face detection part of OpenCV to AS3 and added the source code named Marilena to the Spark Project a [...]
Libspark from Japan is a treasure trove of great flash advancements, they seem to realize the great things that can come from porting in existing solid libraries from C/C++ etc into flash and have been scoring lately including augmented reality in flash porting the ARToolkit to FLARToolkit. Recently a port of [...]
1. 실시간으로 ‘눈’ 위치 검출하는 로직중에….
가장 빠른 로직은 무엇일까요?
————————————————–
이 질문의 개인적인 답은
Haar Feature 이라 생각이 들었습니다.
Haar Feature 관련 글을 많이 봤는데요.
이런 그림은 많이 봐서 원리는 대충 감은 오거든요.
얼굴에 생기는 명암으로 구별하는 것 같은데.
구현에 관해선 아무리 찾아봐도 설명되있지 [...]
[Detecting Faces in Images : A Survey]
Detection 은 영상에서 얼굴이 있는지 없는지 찾는 것
Localization은 얼굴이 카메라를 기준으로 어디쯤 어떻게 있는지 계산하는 것
Recognition은 그 얼굴이 누구인지 인식하는 것
Detection -> Localization -> Recognition 의 순서로 얼굴인식이 이뤄짐.
OpenCV(Open Computer Vision)은 오픈소스 컴퓨터 비전 C 라이브러리이다. 원래 인텔에서 개발되었다. 현재 버전 1.0이 나와있으며 윈도, 리눅스 플랫폼에서 사용할 수 있다. 실시간 이미지 프로세싱에 중점을 둔 라이브러리이다. 인텔 CPU에서 사용되는 경우 속도의 향상을 볼 수 [...]
라이브러리 다운받기
우선 라이브러리를 다운받아야 한다.
아래의 링크에, OpenCV 와 관련된 최신 뉴스 및 각종 자료, 그리고 라이브러리를 다운 받을 수 있다.
http://sourceforge.net/projects/opencvlibrary/
윈도우를 쓰니까, 당연히 opencv-win 을 받아야겠지!!!
2008년 10월18일 버전…. 파일은 실행파일! 게임 설치하듯이 가볍게 설치를 해주고…
OpenCV Document 읽어보기
Categories
- News (55)
- IT News (41)
- Mobile News (17)
- Media News (10)
- Development (134)
- ActionScript dev (81)
- iOS dev (28)
- Android dev (1)
- Papervision3D (12)
- IDE (9)
- openCV (10)
- openGL (1)
- HTML5,CSS,Javascript (11)
- UI/UX (10)
- Miscellaneous (22)
- News (55)



