At first !thank you for try to help me!

and now-->
----------------------------------------------------------------------
i wanna import openCV python library in blender(bge) for use the realtime function "camera tracking" and "object dectect" and I find some guys who have done some games with openCV and Blender(it's true).
----------------------------------------------------------------------------------
I have installed openCV 2.4
I have python 2.7 and 3.2
I have installed openCv in the both versions
I have Blender 2.6.2
I have the file "cv2.pyd" in the folder "C:\Archivos de programa\Blender Foundation\Blender\2.62\python\lib\site-packages"
-------------------------------------------------------------------
anybody know how to import openCV in Blender?
-------------------------------------------------
I tryed writing a python script for the bge (with a always sensor and a python controller connected to the other sensor)
This is the scripts that i tryed to use:
---------------------------------------------------
# 1 script
import sys
sys.path.append("C:\opencv\build\python\2.7")
import cv
--- ERROR: no module named "cv" --
# 2 script
import sys
sys.path.append("C:\opencv\build\python\2.7")
import cv2
--- ERROR: no module named "cv2" --
# 3 script
import sys
sys.path.append("C:\opencv\build\python\2.7")
import opencv from cv
--- ERROR: no module named "opencv" --
# 4 script
import sys
sys.path.append("C:\opencv\build\python\2.7")
from opencv.cv import cv
--- ERROR: no module named "opencv.cv" --
# 5 script
import sys
sys.path.append("C:\opencv\build\python\2.7")
from opencv.cv import cv2
--- ERROR: no module named "cv" --
# 6 script
import sys
sys.path.append("C:\Archivos de programa\Blender Foundation\Blender\2.62\python\lib\site-packages)
import cv
--- ERROR: no module named "cv" --
# 6 script
import sys
sys.path.append("C:\Archivos de programa\Blender Foundation\Blender\2.62\python\lib\site-packages)
import cv2
--- ERROR: no module named "cv2" --
............................
and 20 scripts more!
.............................
thanks you for help me!
New Blender uses Python 3.2. It comes with its own copy of Python.
In order to import modules, they must be for Python 3. If you build modules with Python 2, they are unlikely to install.
Old Blender (2.49) uses Python 2. IIRC, official versions were compiled with Py 2.5 or 2.6, but you can build it with any Py version greater than 2.3 or so.
You might be able to find it already built on graphicall.org .
How about running the CV in python 2.7, then set up some sockets communication between blender-python and the openCV program?
Not sure what's the best way to set this up in blender though, Maybe a repeating delay sensor that triggers the blender script to poll openCV program server?
Can blender experts suggest a better solution?