模版匹配定位跟蹤原始碼
%% Find Green Object
% This script reads in an image file and then attempts to find a green
% object in the image. It is designed to find one green ball and highlight
% that ball on the original image
% Copyright 2013 The MathWorks, Inc.
%% Housekeeping
clear all; close all; clc;
%% Step 1: Read image into MATLAB
% First we read the specified image from the file and bring it into MATLAB
% as a variable. We also display the image to ensure it is correct.
greenBall1 = imread('greenBall1.jpg');
t = imtool(greenBall1);
%%
close(t);
%% Step 2: Identify Unique Characteristics of Object of Interest
%%
% Extract each color
% Next we using indexing to extract three 2D matrices from the 3D image
% data corresponding to the red, green, and blue components of the image.
r = greenBall1(:, :, 1);
g = greenBall1(:, :, 2);
b = greenBall1(:, :, 3);
%%
% View different color planes
figure, colormap gray
subplot(2,2,1),imagesc(r)
subplot(2,2,2),imagesc(g)
subplot(2,2,3),imagesc(b)
%%
% Calculate Green
% Then we perform an arithmetic operation on the matrices as a whole to try
% to create one matrix that represents an intensity of green.
justGreen = g - r/2 - b/2;
colorPlanesPlot(r,g,b,justGreen);
%%
close all
%% Step 3: Isolate Object of Interest
%%
% Threshold the image
% Now we can set a threshold to separate the parts of the image that we
% consider to be green from the rest.
bw = justGreen > 50;
figure;
imagesc(bw);
colormap(gray);
%%
% Remove small unwanted objects
% We can use special functions provided by the Image Processing toolbox to
% quickly perform common image processing tasks. Here we are using
% BWAREAOPEN to remove groups of pixels less than 30.
ball1 = bwareaopen(bw, 30);
figure;
imagesc(ball1);
%% Step 4: Find center of green object
% Now we are using REGIONPROPS to extract the centroid of the group of
% pixels representing the ball.
figure;
s = regionprops(ball1, {'centroid','area'});
if isempty(s)
error('No ball found!');
else
[~, id] = max([s.Area]);
hold on, plot(s(id).Centroid(1),s(id).Centroid(2),'wp','MarkerSize',20,'MarkerFaceColor','r'), hold off
disp(['Center location is (',num2str(s(id).Centroid(1),4),', ',num2str(s(id).Centroid(2),4),')'])
end
%% Step 5: Verify estimated location
% Finally we will plot the center on the original image to clearly evaluate
% how well we have found the center.
figure;
imagesc(greenBall1);
hold on, plot(s(id).Centroid(1),s(id).Centroid(2),'wp','MarkerSize',20,'MarkerFaceColor','r'), hold off
相關文章
- Java原始碼跟蹤閱讀技巧Java原始碼
- spring security 認證原始碼跟蹤Spring原始碼
- [原始碼分析] OpenTracing之跟蹤Redis原始碼Redis
- IDEA之如何Debug原始碼跟蹤Idea原始碼
- Qt - 原始碼跟蹤一個QtCreator就夠了QT原始碼
- spring security之 預設登入頁原始碼跟蹤Spring原始碼
- spring security 授權方式(自定義)及原始碼跟蹤Spring原始碼
- jivejdon程式碼跟蹤問題
- spring security 之自定義表單登入原始碼跟蹤Spring原始碼
- Java高精度定位系統原始碼 UWB定位系統原始碼 定位系統原始碼Java原始碼
- [20211013]閱讀ldd原始碼跟蹤.txt原始碼
- [zt] oracle跟蹤檔案與跟蹤事件Oracle事件
- oracle跟蹤檔案與跟蹤事件(zt)Oracle事件
- oracle跟蹤檔案和跟蹤事件(zt)Oracle事件
- [20120723跟蹤檔案的定位.txt
- 二進位制入門--動態跟蹤原始碼和反彙編程式碼原始碼
- PostgreSQL 原始碼解讀(15)- Insert語句(執行過程跟蹤)SQL原始碼
- 【Longkin】ASP.NET應用程式跟蹤 --- (三) 在程式碼裡訪問跟蹤資訊ASP.NET
- sqlnet跟蹤SQL
- ORACLE 跟蹤工具Oracle
- PostgreSQL 原始碼解讀(21)- 查詢語句#6(PlannedStmt詳解-跟蹤分析)SQL原始碼
- 強盜利用Apple Watch定位功能跟蹤毒販,劫走50萬美元APP
- C庫原始碼閱讀(快速定位原始碼)原始碼
- 追蹤解析 Disruptor 原始碼原始碼
- 匹配指定位數的正規表示式程式碼
- 婚紗攝影網站模版原始碼案例網站原始碼
- slate原始碼解析(三)- 定位原始碼
- 螞蟻金服分散式鏈路跟蹤元件取樣策略和原始碼 | 剖析分散式元件原始碼
- Laravel Route(路由)匹配原始碼分析Laravel路由原始碼
- 基於行跟蹤的ROWDEPENDENCIES實現資訊變化跟蹤
- 【Longkin】ASP.NET應用程式跟蹤---(一)跟蹤頁面ASP.NET
- 【YashanDB知識庫】windows配置ODBC跟蹤日誌, 使用日誌定位問題Windows
- 反跟蹤技術
- 【TRACE】Oracle跟蹤事件Oracle事件
- Oracle跟蹤會話Oracle會話
- Oracle 跟蹤事件【轉】Oracle事件
- Oracle跟蹤檔案Oracle
- 主力跟蹤戰法