Setting up Emgu CV and IronPython: Difference between revisions

From EMGU
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 17: Line 17:
* From the IronPython command line, run the following command:
* From the IronPython command line, run the following command:
<source lang="python">
<source lang="python">
import Emgu
import EmguInit
from Emgu import *
from Emgu import *
</source>
</source>
* You are ready to go.
* You are ready to go.

Revision as of 23:46, 30 October 2008

To use Emgu CV with IronPython, please follow the steps below:

  • Extract the IronPython Binary to a folder
  • Install OpenCV
    • On Windows, copy the required OpenCV 1.1 dlls to the same Folder, please remember to install MSVCRT 8.0 as well
    • On Linux, just install OpenCV package
  • Copy Emgu.CV.dll, Emgu.Util.dll, ZedGraph.dll and zlib.net.dll to the same Folder
  • Copy Emgu.py to the same Folder
  • Run the ipy.exe program. (On Mono, call "mono ipy.exe")
  • From the IronPython command line, run the following command:
import EmguInit
from Emgu import *
  • You are ready to go.