TCP Client-Server Implementation in C

In this tutorial, you will learn to implement a TCP client-server program in the C programming language. Here, the client and server would exchange messages and communicate…

Read more

What is Transfer Learning? – A Simple Introduction.

Transfer Learning is a technique in machine learning where we reuse a pre-trained model to solve a different but related problem. It is one of the popular…

Read more

ADVERTISEMENT

Human Image Segmentation with DeepLabV3+ in TensorFlow

In this article, you will learn to perform person segmentation with DeepLabV3+ architecture on human images. Here, we will cover the entire process of image segmentation starting…

Read more

cv2.imwrite() – Saving Images in OpenCV Python

In our previous tutorials – cv2.imread() – Read Image using OpenCV Python and cv2.resize() – Resizing Image using OpenCV Python, we have learned to read and resize…

Read more

cv2.resize() – Resizing Image using OpenCV Python

In this tutorial, we will learn to resize an image using OpenCV in the Python programming language. For this, we are using the cv2.resize() function. OpenCV refers…

Read more

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

Read more

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…

Read more

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…

Read more

ADVERTISEMENT

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…

Read more

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…

Read more