What Will I Learn?
Write here briefly the details of what the user is going to learn in a bullet list.
- You will learn Python
- You will learn Numpy
- You will learn Pychram
Requirements
- Package Numpy
- Pychram
Difficulty
- Basic
Tutorial Contents
Hello All of member Utopian, now I wanna make tutorial how to make "Application Face Detection and Digital Imaging with Python" but first you must know, what is numpy?
Explanation Numpy
Numpy is the module needed for OpenCV to work properly. Numpy itself is an abbreviation of Numerical python, is a library package that provides various routines to process multidimensional arrays.
Add Numpy Package on PYChram
1 . Open Your PYChram.
2 . Add New Project With Name facedetector.
3 . Add Numpy Library. Follow me to get install numpy library on your Pychram.
Project First Numpy.
1 . Add new python file. click right on project name > new > Python file.
2 . Set with name tes-numpy.
3 . Write this source code.
import numpy as num
number = num.array([1,2,3])
print (number)
4 . Run that program. right click > Run 'tes-numpy,
and you got that program result.
Explain Source Code.
This code to call numpy package to program.
import numpy as num
This code to make variable number with Array value ([1,2,3]).
number = num.array([1,2,3])
This code to print value on variable number.
print (number)
Okay this tutorial to be continue to part 2 how to install OpenCV on PYChram and run it.
Posted on Utopian.io - Rewarding Open Source Contributors