zoukankan      html  css  js  c++  java
  • 基于SURF特征的目标检测

    转战matlab了。步骤说一下:
    目标图obj 含目标的场景图scene
    0. 载入图像

    1. 分别检测SURF特征点
    2. 分别提取SURF描述子,即特征向量
    3. 用两个特征相互匹配
    4. 利用匹配结果计算两者之间的transform关系tform
    5. 根据obj位置与变换关系tform,在scene图上框出obj

    代码,来自matlab,http://localhost:9090/vision/gs/object-detection-and-tracking.html#btt5qyu

    %step1:读取图片
    %读取object图片
    boxImage = imread('stapleRemover.jpg');
    %读取场景图片
    sceneImage = imread('clutteredDesk.jpg');
    
    %step2:检测特征点
    boxPoints = detectSURFFeatures(boxImage);
    scenePoints = detectSURFFeatures(sceneImage);
    
    % figure; imshow(boxImage);
    % title('Box Image中最强的100个feature points');
    % hold on;
    % plot(boxPoints.selectStrongest(100));
    
    %step3 extract feature descriptors  提取出特征的描述子
    %使用extractFeatures(),具体的feature类型是通过boxPoints位置的参数指定的,这里是SURF
    %烂设计,为什么extractFeatures输入了boxPoints后,还要返回boxPoints?
    [boxFeatures, boxPoints] = extractFeatures(boxImage, boxPoints);
    [sceneFeatures, scenePoints] = extractFeatures(sceneImage, scenePoints);
    
    %step4 find putative point matches
    %Match the features using their descriptors.
    boxPairs = matchFeatures(boxFeatures, sceneFeatures);
    %Display putatively matched features.
    matchedBoxPoints = boxPoints(boxPairs(:,1), :);
    matchedScenePoints = scenePoints(boxPairs(:,2),:);
    figure;
    showMatchedFeatures(boxImage, sceneImage, matchedBoxPoints, matchedScenePoints, 'montage');
    title('Putatively Matched Points (Including Outliers)');
    
    %step5 locate the Object in the Scene Using Putative Matches
    [tform, inlierBoxPoints, inlierScenePoints] = ...
        estimateGeometricTransform(matchedBoxPoints, matchedScenePoints, 'affine');
    figure;
    showMatchedFeatures(boxImage, sceneImage, inlierBoxPoints, ...
        inlierScenePoints, 'montage');
    title('Matched Points (Inliers Only)');
    
    %Get the bounding polygon of the reference image.
    boxPolygon = [1, 1;... % top-left
        size(boxImage,2), 1; ... % top-right
        size(boxImage, 2), size(boxImage, 1); ... % bottom-right
        1, size(boxImage, 1); ... % bottom-left
        1, 1]; % top-left again to close the polygon
    
    % transform the polygon into the coordinate system of the target image
    %将多边形变换到目标图片上,变换的结果表示了物体的位置
    newBoxPolygon = transformPointsForward(tform, boxPolygon);
    
    %display the detected object 显示被检测到的物体
    figure; imshow(sceneImage);
    hold on;
    line(newBoxPolygon(:, 1), newBoxPolygon(:, 2), 'Color', 'y');
    title('Detected Box');
    
  • 相关阅读:
    MySQL学习笔记:coalesce
    Oracle学习笔记:decode函数
    MySQL学习笔记:like和regexp的区别
    状态图
    构件图和部署图
    java基础知识(一)
    包图
    活动图
    协作图
    序列图
  • 原文地址:https://www.cnblogs.com/zjutzz/p/5269876.html
Copyright © 2011-2022 走看看