'Deveopment'에 해당되는 글 7건
- 2011/07/18
- 2011/02/16
- 2011/01/21
- 2011/01/12
- 2010/09/18
- 2010/08/21
- 2010/03/10
| Objective-C 에서 fmod library 사용하기 (0) | 2011/07/18 |
|---|---|
| Xcode 프로젝트명 변경하기. (0) | 2011/02/16 |
| 아이폰 사운드 관련 정보 (0) | 2011/01/21 |
| 입김 불기 Detection Code (0) | 2011/01/12 |
| Reset XBee (0) | 2010/09/18 |
| opencv 라이브러리 xCode 에 설정하기 (0) | 2010/08/21 |
To rename an Xcode 2.5 project, do the following:
| Objective-C 에서 fmod library 사용하기 (0) | 2011/07/18 |
|---|---|
| Xcode 프로젝트명 변경하기. (0) | 2011/02/16 |
| 아이폰 사운드 관련 정보 (0) | 2011/01/21 |
| 입김 불기 Detection Code (0) | 2011/01/12 |
| Reset XBee (0) | 2010/09/18 |
| opencv 라이브러리 xCode 에 설정하기 (0) | 2010/08/21 |
아이폰에서 특정 주파수의 intensity만을 가지고 오는 방법은 크게 두가지.
1. fmod (sound library 사용 ! )
http://www.fmod.org
프로그램폴더\FMOD SoundSystem\FMOD Programmers API Win32_4.32.05\documentation\fmodex.chm 에 도움말이 나와있음.
2. fft 사용 !
주파수를 에너지한 후에 특정 주파수 지우고 inverse fft.
reference sites
http://www.mobileorchard.com/tutorial-detecting-when-a-user-blows-into-the-mic
http://www.masque.kr/50387
http://github.com/alexbw/iPhoneFFT
| Objective-C 에서 fmod library 사용하기 (0) | 2011/07/18 |
|---|---|
| Xcode 프로젝트명 변경하기. (0) | 2011/02/16 |
| 아이폰 사운드 관련 정보 (0) | 2011/01/21 |
| 입김 불기 Detection Code (0) | 2011/01/12 |
| Reset XBee (0) | 2010/09/18 |
| opencv 라이브러리 xCode 에 설정하기 (0) | 2010/08/21 |
| Xcode 프로젝트명 변경하기. (0) | 2011/02/16 |
|---|---|
| 아이폰 사운드 관련 정보 (0) | 2011/01/21 |
| 입김 불기 Detection Code (0) | 2011/01/12 |
| Reset XBee (0) | 2010/09/18 |
| opencv 라이브러리 xCode 에 설정하기 (0) | 2010/08/21 |
| OpenCV on iPhone (0) | 2010/03/10 |
| Xcode 프로젝트명 변경하기. (0) | 2011/02/16 |
|---|---|
| 아이폰 사운드 관련 정보 (0) | 2011/01/21 |
| 입김 불기 Detection Code (0) | 2011/01/12 |
| Reset XBee (0) | 2010/09/18 |
| opencv 라이브러리 xCode 에 설정하기 (0) | 2010/08/21 |
| OpenCV on iPhone (0) | 2010/03/10 |
opencv 라이브러리 xCode 에 설정하기
Build OpenCV-2.0.0 for iPhone OS 3.1 (simulator and device) according to this good tutorial.
Under Target > Build > Linking > Other Linker Flags (These flags are passed with all linker invocations. [OTHER_LDFLAGS]) add Build Setting Conditions for Any iPhone Device/Any Architecture and Any iPhone OS Simulator/Any Architecture. Add the flags-lstdc++, -lz, $(SRCROOT)/OpenCV/opencv_{device,simulator}/lib/libcv.a andlibcxcore.a
Under Target > Build > Search Paths > Header Search Paths (This is a list of paths to folders to be searched by the compiler for included or imported header files when compiling C, Objective-C, C++, or Objective-C++. Paths are delimited by whitespace, so any paths with spaces in them need to be properly quoted. [HEADER_SEARCH_PATHS, -I]) add Build Setting Conditions for Any iPhone Device/Any Architecture and Any Iphone OS Simulator/Any Architecture. Add the path$(SRCROOT)/OpenCV/opencv_{device,simulator}/include without recursive flag.
#import <opencv/cv.h>
<주의사항> 경로에 빈칸이 있는경우 적절히 쿼트를 해줘야함. 이것때문에 한시간이나 삽질했음. :^)
| Xcode 프로젝트명 변경하기. (0) | 2011/02/16 |
|---|---|
| 아이폰 사운드 관련 정보 (0) | 2011/01/21 |
| 입김 불기 Detection Code (0) | 2011/01/12 |
| Reset XBee (0) | 2010/09/18 |
| opencv 라이브러리 xCode 에 설정하기 (0) | 2010/08/21 |
| OpenCV on iPhone (0) | 2010/03/10 |
관련자료 업데이트中
+ 사진 face detection 하기
1. git 다운받기 ( code.google.com/p/git-osx-installer )
2. Static Library 만들기 ( 자세한건 github.com/niw/iphone_opencv_test 에서~ )
http://niw.at/articles/2009/03/14/using-opencv-on-iphone/en
http://www.computer-vision-software.com/blog/2009/04/opencv-vs-apple-iphone/
+ 동영상을 받아 face detection 하기 ( iPhone camera frame grab source is now available Here !!! )
http://www.morethantechnical.com/2009/08/09/near-realtime-face-detection-on-the-iphone-w-opencv-port-wcodevideo/
http://code.google.com/p/morethantechnical/
code : http://code.google.com/p/morethantechnical/source/browse/#svn/trunk/FaceDetector-iPhone
3.1 사진 실시간 확대축소
http://chaoskcuf.com/245
iphoneARKit 받기
http://www.iphonear.org/
http://www.morethantechnical.com/2009/05/06/iphone-camera-frame-grabbing-and-a-real-time-meanshift-tracker/
http://code.google.com/p/morethantechnical/
http://github.com/norio-nomura/iphonetest/tree/9713242dda6c6bc897da4bd639a1fdadc29b6fd7/CameraTest
iphonetest 는 OS 3.0 에서 더이상 안됨.
http://deweeeese.blogspot.com/2010/02/processing-iphone-camera-video-on.html
| Xcode 프로젝트명 변경하기. (0) | 2011/02/16 |
|---|---|
| 아이폰 사운드 관련 정보 (0) | 2011/01/21 |
| 입김 불기 Detection Code (0) | 2011/01/12 |
| Reset XBee (0) | 2010/09/18 |
| opencv 라이브러리 xCode 에 설정하기 (0) | 2010/08/21 |
| OpenCV on iPhone (0) | 2010/03/10 |