Halcom 发表于 2021-11-14 21:25:38

Piotr's Computer Vision Matlab Toolbox

Piotr's Computer Vision Matlab Toolbox

行人识别、Hog特征、图像滤波器等等,均可以用这个视觉处理包进行调用。

code代码下载
链接:https://pan.baidu.com/s/1kychkvr-Fou-XdFYQ9BuIQ
提取码:5axo

案例在channel文件夹里面
clc,clear,close all
addpath(genpath('./toolbox'))
% toolboxCompile;
im0 = imread('peppers.png');
im1 = rgbConvert(im, 'luv');
figure(im1)


I = imResample(single(imread('peppers.png')), )/255;
H = hog(I, 8, 9);
e = hog(I, 8, 9, 0.2, 1);
V = hogDraw(e, 25);
im(V)






页: [1]
查看完整版本: Piotr's Computer Vision Matlab Toolbox