Download And Installation: Difference between revisions

From EMGU
Jump to navigation Jump to search
Line 13: Line 13:


*Emgu CV library use WCF(Windows Communication Fundation) and therefore requires mono-olive. Which can be installed by running <code>  
*Emgu CV library use WCF(Windows Communication Fundation) and therefore requires mono-olive. Which can be installed by running <code>  
  rpm -iUh ftp://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/home:/madlewing:/moonlight/openSUSE_10.2/noarch/olive-0.2-21.7.noarch.rpm
  rpm -iUh ftp://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/home:/josephhill/openSUSE_10.3/noarch/olive-0.2-22.7.noarch.rpm
</code> as root. (If you notice, it is the mono-olive rpm built for openSUSE, but it works for Fedora as well)
</code> as root. (If you notice, it is the mono-olive rpm built for openSUSE, but it works for Fedora as well)



Revision as of 15:24, 20 May 2008

Getting the Source

  • Follow this link to the file server on Source Forge.
  • The source files are contained in the package Emgu.CV.Source.zip

Getting the Dependency

Windows

  • Emgu CV use WCF(Windows Communication Fundation) and therefore requires .Net 3.0
  • For Windows, OpenCV 1.0.0.1 and zlib.net Dlls are included in Emgu.CV.Windows.Binary.zip

Linux

  • To run Emgu CV on linux, you need Mono version >= 1.9.1 and OpenCV version >= 1.0.0. On fedora 9, you can install the dependency by running yum install mono-core opencv as root
  • Emgu CV library use WCF(Windows Communication Fundation) and therefore requires mono-olive. Which can be installed by running
rpm -iUh ftp://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/home:/josephhill/openSUSE_10.3/noarch/olive-0.2-22.7.noarch.rpm

as root. (If you notice, it is the mono-olive rpm built for openSUSE, but it works for Fedora as well)

  • For Linux, zlib.net dll is included in Emgu.CV.Linux.Binary.tar.gz

Getting the Binary

Follow this link to access the file server on Source Forge.

Windows

  • The binary files for Windows are included in the package Emgu.CV.Windows.Binary.zip
  • They are compiled from source on Windows using MsBuild

Linux

  • The binary files for Linux are included in the package Emgu.CV.Linux.Binary.tar.gz
  • They are compiled from source in Fedora 8 using mono-1.2.6 with flag LINUX

Creating Your Project

Visual Studio

To use the framework in Visual Studio, you need to

  • Create a new Visual Studio project or use an existing one
  • Add the 3 files zlib.net.dll, Emgu.Utils.dll and Emgu.CV.dll to References of the project
  • Copy the OpenCV dll files: cv100.dll, cvaux100.dll, cvcam100.dll, cxcore100.dll, cxts001.dll, highgui100.dll, libguide40.dll and ml100.dll to the execution directory.
  • Optionally put the following line

using Emgu.CV;

in the top of your code to include the Emgu.CV namespace.