What is Python?

Python is a programming/scripting language that can be used on many different computers and operating systems, including Windows, Unix, Macintosh, etc.

Read More

Why Python?

It’s very straightforward and easy to read and write. It’s now one of the most popular programming languages.

Read More

Getting Started With Python

The first and most obvious thing to do is download Python and start playing!

Read More

Build a Blog with Django #1: Project Configuration

In this tutorial series, we are going to build a blog application with Python and the Django web framework. We will start from the configuration of the project then we will implement the following features: authentication, reset password, change password, comment, create a post, and finally we will deploy the application. Dependencies To check the

Edge and Contour Detection with OpenCV and Python

In this tutorial, we are going to see another image processing technique: detect edges and contours in an image. Edge detection is a fundamental task in computer vision. It can be defined as the task of finding boundaries between regions that have different properties, such as brightness or texture. Simply put, edge detection is the process of

Morphological Operations with OpenCV and Python

In this article we are going to see how to use the following morphological operations: Morphological operations are some transformations applied to grayscale or binary images. Morphological operations apply a structuring element to add or remove some pixels from the boundaries of objects in an input image. A structuring element is a matrix that defines the neighborhood

Object Detection with YOLO using PyTorch

In this tutorial, we will use the YOLO object detection algorithm to detect objects in images and videos. Object detection is a computer vision task that involves identifying and localizing objects in an image or video. It is a challenging task that requires both localizing objects in the image and classifying what type of object