日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 人工智能 > 循环神经网络 >内容正文

循环神经网络

imageset matlab,如何以imageSet或imageDataStore的形式向MATLAB中的BagOfFeatures()函數提供輸入?...

發(fā)布時間:2023/12/9 循环神经网络 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 imageset matlab,如何以imageSet或imageDataStore的形式向MATLAB中的BagOfFeatures()函數提供輸入?... 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

我想使用MATLAB的bagOfFeatures()函數(shù)。但它需要以imageSet或imageDataStore的形式輸入。我想運行的代碼如下:如何以imageSet或imageDataStore的形式向MATLAB中的BagOfFeatures()函數(shù)提供輸入?

Dataset = 'D:\dsktop\kinect_leap_dataset\acquisitions';

thresh1 = 0;

thresh2 = 20;

k = dir(fullfile(Dataset,'\P*\G*\*_depth.png'));

kf = {k(~[k.isdir]).folder};

kn = {k(~[k.isdir]).name};

for j=1:length(k)

% Applying thresholding to the original image

full_name = horzcat(kf{j},filesep,kn{j});

image = imread(full_name);

image_bin1 = (image < thresh2);

image_bin2 = (thresh1 < image);

image_bin = abs(image_bin2- image_bin1);

sequence{i} = image_bin;

end

% Bag of Features

bag = bagOfFeatures(sequence);

但「順序」是細胞類等bagOfFeatures()是給我的錯誤。所以,我想這一點:

Dataset = 'D:\dsktop\kinect_leap_dataset\acquisitions';

imgFolder = fullfile(Dataset);

imgSets = imageSet(imgFolder, 'recursive');

imgSets.Description

但是現(xiàn)在的問題是怎麼做的處理(閾值)對保存在imgSets圖像。此外,處理後如何將所有「image_bin」圖像保存在imageSet類中,以便我可以將它們作爲B(tài)agOfFeatures()函數(shù)的輸入。

2017-07-28

Prachi

總結

以上是生活随笔為你收集整理的imageset matlab,如何以imageSet或imageDataStore的形式向MATLAB中的BagOfFeatures()函數提供輸入?...的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。