Article Category

HCI Story (48)
Intro (1)
My Projects (23)
Other Projects (12)
Deveopment (7)
Study (4)
Gossips (1)

Recent Comment

Archive

  • Total4,045
  • Today1
  • Yesterday3
  1. 2011/07/18
    Objective-C 에서 fmod library 사용하기
  2. 2011/02/16
    Xcode 프로젝트명 변경하기.
  3. 2011/01/21
    아이폰 사운드 관련 정보
  4. 2011/01/12
    입김 불기 Detection Code
  5. 2010/09/18
    Reset XBee
  6. 2010/08/21
    opencv 라이브러리 xCode 에 설정하기
  7. 2010/03/10
    OpenCV on iPhone

Objective-C 에서 fmod library 사용하기 순서

1. audiotoolbox.framework 추가

2. 링크 주소 추가 + 주소파일

3. m -> mm 으로 변경

4. Linker flag 추가

'Deveopment' 카테고리의 다른 글

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
트랙백 0개 and 댓글 0개



To rename an Xcode 2.5 project, do the following:

  1. Close the project in Xcode
  2. Duplicate the project directory in the Finder by pressing Command-D.
  3. Rename the folder
  4. Open the folder and rename the “.xcodeproject” file
  5. Delete the “Build” sub folder, if there is one
  6. Open the renamed .xcodeproject file
  7. On the left in the “Groups&Files” list, expand the “Targets” group, double click on the target that still has your old project filename. Rename it under the “General”-tab in the window that opens.
  8. Select “Clean all targets” from the “Build” menu, keep the boxes checked, and click “Clean”.
  9. Build and run your project.


원문 : http://drjunker.org/2008/04/10/xcode-rename-project-and-application-change-copyright-and-version-number/

'Deveopment' 카테고리의 다른 글

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
트랙백 0개 and 댓글 0개


아이폰에서 특정 주파수의 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





'Deveopment' 카테고리의 다른 글

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
트랙백 0개 and 댓글 0개
Tutorial link : mobileorchard.com/tutorial-detecting-when-a-user-blows-into-the-mic/

Git link : github.com/dcgrigsby/MicBlow

Low pass filter를 사용해서 frequency 를 구별하고 이를 통해 입김을 찾아내는 objective-C 소스.


'Deveopment' 카테고리의 다른 글

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
트랙백 0개 and 댓글 0개

*. 지그비 리셋하기

http://forums.adafruit.com/viewtopic.php?f=40&t=11427

'Deveopment' 카테고리의 다른 글

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
트랙백 0개 and 댓글 0개

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>

 

<주의사항> 경로에 빈칸이 있는경우 적절히 쿼트를 해줘야함. 이것때문에 한시간이나 삽질했음. :^)

 

 


 

'Deveopment' 카테고리의 다른 글

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
트랙백 0개 and 댓글 0개


관련자료 업데이트中

+ 사진 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

'Deveopment' 카테고리의 다른 글

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
트랙백 0개 and 댓글 0개