Isolating objects in a scene
In this chapter, we are going to introduce the first step in an AOI algorithm and try to isolate different parts or objects in a scene. We are going to take the example of the object detection and classification of three object types (screw, packing ring, and nut) and develop them in this chapter and Chapter 6, Learning Object Classification.
Imagine that we are in a company that produces these three objects. All of them are in the same carrier tape. Our objective is to detect each object in the carrier tape and classify each one to allow a robot to put each object on the correct shelf:

In this chapter, we are going to learn how to isolate each object and detect its position in the image in pixels. In the next chapter, we are going to learn how to classify each isolated object to recognize if it is a nut, screw, or a packing ring.
In the following screenshot, we show our desired result, where there are a few objects in the left image. In the right image, we have drawn each one in a different color, showing different features such as area, height, width, and contour size:

To reach this result, we are going to follow different steps that allow us to understand and organize our algorithms better. We can see these steps in the following diagram:

Our application will be divided into two chapters. In this chapter, we are going to develop and understand the preprocessing and segmentation steps. In Chapter 6, Learning Object Classification, we are going to extract the characteristics of each segmented object and train our machine learning system/algorithm on how to recognize each object class.
Our preprocessing steps will be divided into three more subsets:
- Noise Removal
- Light Removal
- Binarization
In the segmentation step, we are going to use two different algorithms:
- Contour detection
- Connected components extraction (labeling)
We can see these steps and the application flow in the following diagram:

Now, it's time to start the preprocessing step so that we can get the best Binarization image by removing the noise and lighting effects. This minimizes any possible detection errors.
- 數(shù)據(jù)存儲架構(gòu)與技術(shù)
- 數(shù)據(jù)分析實戰(zhàn):基于EXCEL和SPSS系列工具的實踐
- 數(shù)據(jù)可視化:從小白到數(shù)據(jù)工程師的成長之路
- Hands-On Machine Learning with Microsoft Excel 2019
- 從0到1:數(shù)據(jù)分析師養(yǎng)成寶典
- Access 2007數(shù)據(jù)庫應(yīng)用上機指導(dǎo)與練習(xí)
- Live Longer with AI
- 中國數(shù)字流域
- 基于OPAC日志的高校圖書館用戶信息需求與檢索行為研究
- 深入淺出Greenplum分布式數(shù)據(jù)庫:原理、架構(gòu)和代碼分析
- AI時代的數(shù)據(jù)價值創(chuàng)造:從數(shù)據(jù)底座到大模型應(yīng)用落地
- 辦公應(yīng)用與計算思維案例教程
- 數(shù)據(jù)庫原理與應(yīng)用
- 菜鳥學(xué)SPSS數(shù)據(jù)分析
- Visual Studio 2012 and .NET 4.5 Expert Development Cookbook