Installation guide (python2
Installation guide (opencv3.1.0 vs2013, win10) 4 dec 2016/ modified 18 Oct 2018
Assume you have installed opencv3.1.0 (see part 2)
PART 1
Install OpenCV-Python in Windows
Goals
In this tutorial
• We will learn to setup OpenCV-Python in your Windows system.
Below steps are tested in a Windows 7-64 bit machine with Visual Studio 2010 and Visual Studio 2012. The screenshots shows VS2012.
Installing OpenCV from prebuilt binaries
1. Below Python packages are to be downloaded and installed to their default locations.
1. Install Python-2.7.x. (tested 32-bit, python 2.7.12 ) in c:\python2.7
After this python2.7 is installed , put c:\python2.7 in win10 path. Install all packages into their default locations. Python will be installed to C:\Python27\.
2. install Numpy. 1.9 Must be 1.9 not 1.7 use the following link
3. install Matplotlib (Matplotlib is optional, but recommended since we use it a lot in our tutorials). Need to install this (dateutil) for matplotlib
4.
5.
1.4 install scipy from
2. After installation, open Python IDLE. Enter import numpy and make sure Numpy is working fine.
3. Download latest OpenCV release from sourceforge site and double-click to extract it.
7. Goto opencv/build/python/2.7 folder.
7. Copy cv2.pyd to C:/Python27/lib/site-packeges.
7. Open Python IDLE and type following codes in Python terminal.
IDLE means it is the UI of python, type python at Ask me anything in win10, you should see it
Testing
>>> import cv2
>>> print cv2.__version__
3.1.0 is what I get
import numpy
print numpy.__version__
1.9.1 is what I get
import scipy
print numpy.__version__
0.16.1 is what I get
Import
You can check the library, they are at
C:\Python27\Lib\site-packages
If the results are printed out without any errors, congratulations !!! You have installed OpenCV-Python successfully.
# opencv_test1.py begin, a testing file ##########################
Test opencv3.1.0 in python 2.7
Ave this script in a test file
import cv2
import numpy as np
cap = cv2.VideoCapture(0)
while(1):
# Take each frame
_, frame = cap.read()
# Convert BGR to HSV
hsv = cv2.cvtColor(frame, cv2.COLOR_BGR2HSV)
# define range of blue color in HSV
lower_blue = np.array([110,50,50])
upper_blue = np.array([130,255,255])
# Threshold the HSV image to get only blue colors
mask = cv2.inRange(hsv, lower_blue, upper_blue)
# Bitwise-AND mask and original image
res = cv2.bitwise_and(frame,frame, mask= mask)
cv2.imshow('frame',frame)
cv2.imshow('mask',mask)
cv2.imshow('res',res)
k = cv2.waitKey(5) & 0xFF
if k == 27:
break
cv2.destroyAllWindows()
# opencv_test1.py end, a testing file ##########################
Save it in d:\\python_test\\opencv_test1.py
In the IDLE window , run this
File >> open >> opencv_test1.py>> run module, (escape to exit)
You may run script by using
But not very user friendly
execfile('d:\\0vision\\python_test\\opencv_test1.py')
(not tested)
#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
# opencv_test1.py begin, a testing file ##########################
#make sure you have 'c:\\images\\lena.jpg'
# harris1.py begin, a testing file ##########################
You may try harris.py
import cv2
import numpy as np
#filename = 'c:\\images\\lena\\chessboard.jpg'
filename = 'c:\\images\\lena.jpg'
img = cv2.imread(filename)
gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
gray = np.float32(gray)
dst = cv2.cornerHarris(gray,2,3,0.04)
#result is dilated for marking the corners, not important
dst = cv2.dilate(dst,None)
# Threshold for an optimal value, it may vary depending on the image.
img[dst>0.01*dst.max()]=[0,0,255]
cv2.imshow('dst',img)
if cv2.waitKey(0) & 0xff == 27:
cv2.destroyAllWindows()
# harris1.py ends , a testing file ##########################
[pic]
More tests can be found at
PART 2
Updated 3 Dec 2016. Ver.161203c
Test only debug mode forget release mode, because if you use the wrong lib, it crashes
Link only to opencv_world310d.lib, do not link to opencv_world310d.lib
Ok opencv3.1.0, vs2013, win10
1. Download OpenCV and VisualStudioExpress (or use vs2013)
2. Install Visual Studio Express, Extract OpenCV (e.g. opencv310)
3. In PC. , Edit System Environment Variables
• Add OPENCV_DIR with the address C:\opencv\build\x64\vc12
• (according to where you have extracted), add to path
%OPENCV_DIR%\bin
4. Make a new project in Visual Studio
Create a project (win32 console application), then change it to x64 as follows
[pic]
5. Right click the project name>>select property>> and add a new property sheet under the Debug | x64 folder, In configuration manager
6. Add active solution
[pic]
7. Active solution >>select New >>select x64 (copy from win32)
8. [pic]
9. [pic]
Now change the properties of all projects you will create later
10. From the top Microsoft visual studio menu (top) select VIEW>>other windows >>property manager,
11. Then, the right top window will show a window with Debug x64>> open Debug x64>> right-click Microsoft.Cpp.x64.user, do the followings.
12. Make 3 changes in the property sheet
1) C/C++->General->Additional Include Directories-> Add
$(OPENCV_DIR)\..\..\include
If using opencv300
$(OPENCV_DIR300)\..\..\include
2) Linker->Input->Additional Dependencies option->Add
opencv_world310d.lib
If using opencv300: opencv_world300d.lib
Better not add opencv_world310d.lib and keep debug mode always. If you really do need release mode, add this with care. If you debug and use the release lib (opencv_world310d.lib) , system may crash.
3) Linker->General->Addition.Lib.Directories-> add $(OPENCV_DIR)\lib
** warning : Do not touch VC++ Directories
13. Now you can create a new project with the above properties. Then after the project is created, in the view/solution window:
14. Test and Display an image
• Select the project, and add a new C++ file (some examples are shown below) under the source files option
• Paste the following code.
• Add #include "stdafx.h" to source
• Change the solution platform to x64 and select Build Solution
15. Open the Project2/x64/Debug folder and add an image
16. Open command prompt and change to the above folder and run it as Project2.exe image_name.jpg
To compile and debug: At the top menu of visual studio
BUILD >> CLEAN SOLUTION>> REBUILD SOLUTION.
Then, Select the “Local window debug” icon to run
Or simply type F5.
//////////////////////////////////////////////////////////////////////////////////////////////////////
// example 1 begins--------------------------------------------------------
//display1.cpp
#include "stdafx.h"
#include
#include
#include
using namespace cv;
using namespace std;
int main(int argc, char** argv)
{
Mat image;
image = imread("c:\\images\\lena.jpg"); // Read the file
if (!image.data) // Check for invalid input
{
cout ................
................
In order to avoid copyright disputes, this page is only a partial summary.
To fulfill the demand for quickly locating and searching documents.
It is intelligent file search solution for home and business.
Related download
- setting up python 3 4 numpy and matplotlib on your own
- numpy marquette university
- installing numpy scipy opencv theano for python in vs
- installation guide python2
- max marks 70time 3 hrs python class room diary
- setting up python 3 4 numpy and matplotlib on your
- ishimada f
- pysimulator welcome to openmodelica openmodelica
- python part ii analyzing patient data
Related searches
- xfinity free installation promo
- installation and operation qualification
- equipment installation qualification
- installation qualification template
- installation qualification requirements
- software installation qualification
- installation qualification wiki
- installation qualification checklist
- installation qualification protocol template
- installation qualification sop
- equipment installation qualification template
- installation qualification report