cv2.imread() – Read Image using OpenCV Python 0

cv2.imread() – Read Image using OpenCV Python

In this tutorial, we are going to focus on reading an image using the Python programming language. For this, we are going to use the OpenCV library. OpenCV refers to Open Source Computer Vision library aimed at computer vision and machine learning. To use OpenCV in Python install the following...

RESUNET Implementation in PyTorch 1

RESUNET Implementation in PyTorch

This tutorial focuses on implementing the image segmentation architecture called Deep Residual UNET (RESUNET) in the PyTorch framework. It’s an encoder-decoder architecture developed by Zhengxin Zhang et al. for semantic segmentation. It was initially used for road extraction from high-resolution aerial images in the field of remote sensing image analysis. Original Paper: Road Extraction...

UNET Implementation in PyTorch 0

UNET Implementation in PyTorch

This tutorial focus on the implementation of the image segmentation architecture called UNET in the PyTorch framework. It’s a simple encoder-decoder architecture developed by Olaf Ronneberger et al. for Biomedical Image Segmentation in 2015 at the University of Freiburg, Germany. What is Image Segmentation? An image consists of multiple objects...

Convolution Neural Network (CNN) – Fundamental of Deep Learning 0

Convolution Neural Network (CNN) – Fundamental of Deep Learning

Convolutional Neural Network (CNN) is used to solve a wide range of visual tasks such as image classification, object detection, semantic segmentation, and many more. CNN consists of a series of convolutional layers with non-linear activation functions and some downsampling layers. These CNNs are able to capture hierarchical patterns and...

File Transfer using UDP Socket in C 0

File Transfer using UDP Socket in C

In this tutorial, we are going to build a file transfer program in the C programming language. Here we are going to use the UDP (User Datagram Protocol) socket to connect the client and the server. Table of Content: What is UDP? Project structure Client Server Run the code Conclusion...

Why do we need GPU for Deep Learning? 0

Why do we need GPU for Deep Learning?

The current era started to move towards Artificial Intelligence, which massively impacted the world with its ability to achieve the tasks that were a dream of humanity. All of these achievements are mainly due to the research and development in the field of Deep Learning and Neural Network, which are...

Extract and Saving Frame from Videos in Python 0

Extract and Saving Frame from Videos in Python

In this post, we are going to learn and build a python program where we are going to extract and save frames from videos using the OpenCV library. OpenCV is one of the most commonly used libraries for computer vision tasks, such as reading and saving images, face recognition, segmentation,...

What is RESUNET 0

What is RESUNET

RESUNET refers to Deep Residual UNET. It’s an encoder-decoder architecture developed by Zhengxin Zhang et al. for semantic segmentation. It was initially used for the road extraction from the high-resolution aerial images in the field of remote sensing image analysis. Later, it was adopted by researchers for multiple other applications...

What is UNET? 0

What is UNET?

UNET is an architecture developed by Olaf Ronneberger and his team at the University of Freiburg in 2015 for biomedical image segmentation. It is a highly popular approach for semantic segmentation tasks. It is a fully convolutional neural network that is designed to learn from fewer training samples. This architecture...