In the article, we will go through the paper Attention U-Net: Learning Where to Look for the Pancreas. It was written by Ozan Oktay et. […]
Tag: python
DeepLabV3+ ResNet50 Architecture in TensorFlow using Keras
In today’s tutorial, we will be looking at the DeepLabV3+ (ResNet50) architecture implementation in TensorFlow using Keras high-level API. Within this architecture, ResNet50 would be […]
Image Segmentation-based Background Removal in TensorFlow
Image segmentation is an important area of computer vision that involves dividing an image into multiple segments, each of which corresponds to a different object. […]
Large File Transfer using TCP Socket in Python
File transfer has been one of many tasks in socket programming. In this article, we will discuss how to transfer large files using TCP sockets […]
What is Intersection over Union (IoU) in Object Detection?
Intersection over Union (IoU) is a popular evaluation metric used in the field of computer vision and object detection. It is used to calculate the […]
Human Face Detection using Multi-task Cascaded Convolutional Networks in TensorFlow
In recent years, advances in machine learning and deep learning techniques have revolutionized the field of computer vision. With the help of these techniques, we […]
What is U2-Net or U-square Net
U2-Net is a simple and powerful architecture designed for the purpose of salient object detection (SOD). It is a two-level nested U-shaped architecture built using […]
Simple Object Detection with Bounding Box Regression in TensorFlow
Object detection is a fundamental task in computer vision that involves identifying and locating objects within an image or video. In this post, we will […]
Implementing Linear Regression in TensorFlow
TensorFlow is a powerful library for machine learning that allows for the easy implementation of various algorithms, including linear regression. In this tutorial, we will […]
Human Face Landmark Detection in TensorFlow using Pre-trained MobileNetv2
Today, in this blog post, we will learn how to train a Convolutional Neural Network (CNN) to detect human facial landmarks, such as eyes, mouth, […]