Eran Feit Blog posts

Python Image Segmentation Made Easy with OpenCV and K-means Algorithm

OpenCV Image Segmentation with K-Means in Pytho

Introduction Image segmentation is the process of partitioning an image into meaningful regions (segments) — for example separating foreground from background, isolating objects, or splitting an image into zones of similar color or texture. One classic and relatively simple technique for segmentation is K-means clustering applied in color (or feature) space. In this post, we’ll […]

Python Image Segmentation Made Easy with OpenCV and K-means Algorithm Read More »

Real-Time Image Classification with Jetson Nano and OpenCV — Complete Guide

Jetson Image Classification

Introduction to real-time image classification with Jetson Nano and Python In this tutorial, we will build a real-time image classification using Jetson Nano Inference and OpenCV in Python.The code connects to a webcam, captures live video, classifies each frame using a deep learning model (GoogLeNet), and overlays the recognized object name directly onto the video

Real-Time Image Classification with Jetson Nano and OpenCV — Complete Guide Read More »

How to Build a Real-Time Video Classifier on NVIDIA Jetson Nano with Python

jetson nano real time image classification

Introduction Real‑time video classification on edge devices opens exciting possibilities—from wildlife monitoring to smart kiosks. NVIDIA’s Jetson Nano is a compact AI computer designed for these tasks. This tutorial walks through building a real‑time video classifier using OpenCV and Python on the Jetson Nano. You’ll learn how to load a pre‑trained neural network (GoogLeNet), process each video

How to Build a Real-Time Video Classifier on NVIDIA Jetson Nano with Python Read More »

How to classify objects using Jetson Nano inference and OpenCV ?

jetson nano image classification

Jetson Nano Image Classification with OpenCV and Python Introduction This tutorial shows how to run Jetson Nano image classification with Python and OpenCV.You will use the NVIDIA Jetson Inference library with GoogleNet to recognize objects in a single image. The goal is to build a CUDA-accelerated pipeline that loads an image, classifies it on the

How to classify objects using Jetson Nano inference and OpenCV ? Read More »

Getting started with Jetson Nano | How to install Jetson Nano inference tutorial to classify objects

jetson nano setup

How to Install jetson-inference on Jetson Nano (Complete Build Tutorial) – Jetson Nano Setup Jetson Nano Setup Overview Setting up Jetson Nano correctly is the fastest way to start deploying AI models at the edge. In this guide you will install all required developer tools, clone NVIDIA’s jetson-inference repository, and compile it from source. You

Getting started with Jetson Nano | How to install Jetson Nano inference tutorial to classify objects Read More »

What actually sees a CNN Deep Neural Network model ?

visualize CNN

Welcome to our comprehensive image classification tutorial series! In this tutorial playlist, consisting of five informative videos, we will guide you through the entire process of classifying monkey species in images, utilizing vgg16 transfer learning and CNN filter visualization. This is part of our TensorFlow image classification tutorial series! Each video focuses on a specific

What actually sees a CNN Deep Neural Network model ? Read More »

How to classify monkeys images using convolutional neural network , Keras tuner hyper parameters , and transfer learning ? (part4)

Transfer Learning Fine-tune a Pretrained VGG16

Welcome to our comprehensive image classification tutorial series! In this tutorial playlist, consisting of five informative videos, we will guide you through the entire process of classifying monkey species in images, utilizing vgg16 transfer learning. This is part of our TensorFlow image classification tutorial series! Each video focuses on a specific aspect of the process,

How to classify monkeys images using convolutional neural network , Keras tuner hyper parameters , and transfer learning ? (part4) Read More »

How to classify monkeys images using convolutional neural network , Keras tuner hyper parameters , and transfer learning ? (part3)

Optimize CNN for Accuracy using Keras Tuner Hyper Parameters

Welcome to our comprehensive image classification tutorial series! In this tutorial playlist, consisting of five informative videos, we will guide you through the entire process of classifying monkey species in images. This is part of our TensorFlow image classification tutorial series! Each video focuses on a specific aspect of the process, providing you with a

How to classify monkeys images using convolutional neural network , Keras tuner hyper parameters , and transfer learning ? (part3) Read More »

How to classify monkeys images using convolutional neural network , Keras tuner hyper parameters , and transfer learning ? (part2)

Tensorflow CNNImage Classification Tutorial

🎥 TensorFlow Image Classification Tutorial With Keras CNN: Image Classification Tutorial Series: Five Parts 🐵 Welcome to our comprehensive image classification tutorial series! In this tutorial playlist, consisting of five informative videos, we will guide you through the entire process of classifying monkey species in images. This is part of our TensorFlow image classification tutorial

How to classify monkeys images using convolutional neural network , Keras tuner hyper parameters , and transfer learning ? (part2) Read More »

Eran Feit