Application Face Detection and Digital Imaging with Python on PYChram [part1] [NumPY]

Words
245
Reading
2 min
Listen
Play
8y

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.

1.png

2.png

3.png

4.png

Project First Numpy.

1 . Add new python file. click right on project name > new > Python file.
5.png

2 . Set with name tes-numpy.

6.png

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.
7.png

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

Application Face Detection and Digital Imaging with Python on PYChr... | Ecency