Difference between revisions of "Setting up Emgu CV and IronPython"
Jump to navigation
Jump to search
m |
m |
||
Line 11: | Line 11: | ||
* Copy Emgu.CV.dll, Emgu.Util.dll, ZedGraph.dll and zlib.net.dll to the same Folder | * Copy Emgu.CV.dll, Emgu.Util.dll, ZedGraph.dll and zlib.net.dll to the same Folder | ||
− | * Copy | + | * Copy EmguInit.py to the same Folder |
* Run the ipy.exe program. (On Mono, call "mono ipy.exe") | * Run the ipy.exe program. (On Mono, call "mono ipy.exe") |
Revision as of 00:32, 31 October 2008
To use Emgu CV with IronPython, please follow the steps below:
- Download IronPython Binary from its official web page http://www.codeplex.com/IronPython
- Extract the IronPython Binary to a folder
- Install OpenCV
- Copy Emgu.CV.dll, Emgu.Util.dll, ZedGraph.dll and zlib.net.dll to the same Folder
- Copy EmguInit.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 EmguInit import *
- You are ready to go.