'Projects/Ianterface'에 해당되는 글 3건

  1. 2010.01.02 FMS Flash Media Stream Server 셋팅
  2. 2009.11.24 OPENCV 프로그램이 초기화되지 못하였습니다. 라는 에러메시지로 실행이 안될때 빌드만 되고.
  3. 2009.07.16 OpenCV 불러올수 있는 함수.

FMS Flash Media Stream Server 셋팅

크아.. 학술제때 한번 실패 하곤.. -_-; 학술제는 접었었는데.. -_-;;

이번에 한방에 셋팅 성공! 그땐 도대체 뭘 못한거지? -_-;

일단

Adobe.com 에서 FMS와 FME를 깔아야 한다 (Flash Media Encoder)

현재 나는 fms 3.5 , fme 3.0 을 사용했음

우선 아무런 셋팅을 하지 않았다.

우선 FME를 켜서  stream to fms 의 url 를 내 주소로 바꾸어 버리고
스트림 을 livestream으로 바꿔준다.

그다음 끝.. -_-;

FMS에서 확인해보니까 된다

여기서 팁이라면

rtmp:/live 이런식으로 되있는데

사실은 rtmp://203.ㅌㅌㅌㅌ/live 라고 해야한다.. -_-;

슬러쉬가 하나라서 잠깐 맹했떤 ... -.-;

파이팅!!! 하나씩 하자~~~

OPENCV 프로그램이 초기화되지 못하였습니다. 라는 에러메시지로 실행이 안될때 빌드만 되고.


해결책~!

If you are using the pre-compiled binary, you need to install MSVCRT
(visual c++ run time) 8.0 available from the following link

http://www.microsoft.com/downloads/details.aspx?familyid=200B2FD9-
AE1A-4A14-984D-389C36F85647&displaylang=en

OpenCV 1.1pre is built on Visual Studio 2005 and therefore depends on
MSVCRT 8.0. This is such a fall back since OpenCV 1.0 doesn't require
that run time at all. I am the maintainer of the Emgu CV project
(which is .NET OpenCV wrapper) and a user post the same question on
our discussion forum. It took me quite a while to find out the cause.

I think it would be nice if the OpenCV developers can static link the
VCRT on windows binary, otherwise they should at least state the
requirements on the release note. 

.. 겨우 찾았네.. -_-; 다운받은후에 실행하자


//////////////////// 헐 다음에 깔때 생긴 문제인데.. 저 위에것이 설치가 안되는 경우가 있다 다음과 같은 경우는

Dear Mr. Diamond,

Thanks for your clarification.

I can reproduce this issue on Chinese version of Windows XP. Based on my reserches, the cause of that is the path of the temp folder for such user account has asian characters. The workaound I found is that we can use a batch file and set our own temp path. For example

  @echo off
  echo Installing the Microsoft Visaul C++ redistributable
  echo Please wait...
  vcredist_x86.exe /T:"C:\Mytemp"
  echo Done!

Thanks,
Rong-Chun Zhang
MSDN Subscriber Support in Forum
If you have any feedback on our support, please contact msdnmg[at]microsoft.com

이 메시지가 답이 될듯! :D

OpenCV 불러올수 있는 함수.

OpenCV 에서 cvLoad 함수로 불러 들일 수 있는 파일은
Windows bitmaps - BMP, DIB;
JPEG files - JPEG, JPG, JPE;
Portable Network Graphics - PNG;
Portable image format - PBM, PGM, PPM;
Sun rasters - SR, RAS;
TIFF files - TIFF, TIF;
입니다. cvSave 함수를 사용하면 저장도 가능하고요.

- 주요 함수

A.윈도우 관련

  cvNamedWindow( "T9-camera", 0 );
  cvShowImage( "T9-camera", image );
  cvDestroyWindow( "T9-camera" );

 

B.카메라 영상 캡쳐 관련

  CvCapture* capture = cvCaptureFromCAM(0);
  cvGrabFrame( capture );
  image = cvRetrieveFrame( capture );

  cvReleaseCapture( &capture );

prev 1 next