摘要:
物体识别:SIFT 特征;人脸识别:LBP 特征;行人检测:HOG 特征;0. 常见手工设计的低级别特征manually designed low-level features语音:高斯混合模型和隐马尔可夫模型;Gabor features for : texture... 阅读全文
摘要:
1. matlab 自带含 ground truth 数据集%% 加载停车标志数据到内存;data = load('stopSignsAndCars.mat', 'stopSignsAndCars');stopSignsAndCars = data.stopSigns... 阅读全文
摘要:
1. matlab 自带含 ground truth 数据集%% 加载停车标志数据到内存;data = load('stopSignsAndCars.mat', 'stopSignsAndCars');stopSignsAndCars = data.stopSigns... 阅读全文
摘要:
1. montage:同时显示多个图像thumbnails = train_x(:, :, :, 1:100);thumbnails = imresize(thumbnails, [64, 64]);montage(thumbnails) montage(I) di... 阅读全文
摘要:
1. fullfile:路径补全f = fullfile(filepart1,...,filepartN)显然可变参数之间填充的路径分隔符(path separator),会根据操作系统而变化:windows:/Linux:\2. fileparts:路径拆分[pat... 阅读全文
摘要:
1. fullfile:路径补全f = fullfile(filepart1,...,filepartN)显然可变参数之间填充的路径分隔符(path separator),会根据操作系统而变化:windows:/Linux:\2. fileparts:路径拆分[pat... 阅读全文
摘要:
1. 图像图像大的类型分为如下的两种(raster,vector): SVG:scalable vector graphics 是一种基于 xml 的矢量图像格式。 SVG 格式图像及其表现,通过 xml 文本文件定义;由 W3C 开发的开源标准。 ... 阅读全文
摘要:
1. 图像图像大的类型分为如下的两种(raster,vector): SVG:scalable vector graphics 是一种基于 xml 的矢量图像格式。 SVG 格式图像及其表现,通过 xml 文本文件定义;由 W3C 开发的开源标准。 ... 阅读全文
摘要:
OpenCV putText() new line charactercv2.putText 在向图像中添加文本信息时,如果在待添加的文本中含有换行转义符,一般它是无法正确处理的:cv2.putText(img, "This is \n some text", (50... 阅读全文
摘要:
OpenCV putText() new line charactercv2.putText 在向图像中添加文本信息时,如果在待添加的文本中含有换行转义符,一般它是无法正确处理的:cv2.putText(img, "This is \n some text", (50... 阅读全文