• 大小: 10.56MB
    文件类型: .gz
    金币: 1
    下载: 0 次
    发布日期: 2023-10-26
  • 语言: 其他
  • 标签: 图像分类  

资源简介

程序对图像进行了很好的分类,好不容易找到的代码。

资源截图

代码片段和文件信息

function [keypointsdescriptors] = computeFeatures(im)
% COMPUTEFEATURES Compute keypoints and descriptors for an image
%   [KEYPOINTS DEscriptORS] = COMPUTEFEAUTRES(IM) computes the
%   keypoints and descriptors from the image IM. KEYPOINTS is a 4 x K
%   matrix with one column for keypoint specifying the XY location
%   the SCALE and the CONTRAST of the keypoint.
%
%   DEscriptORS is a 128 x K matrix of SIFT descriptors of the
%   keypoints.

% Author: Andrea Vedaldi

im = standardizeImage(im) ;
[keypoints descriptors] = vl_phow(im ‘step‘ 4 ‘floatdescriptors‘ true) ;

评论

共有 条评论