Extract necessary fields values from .mat; Combining coordinates.

6 ビュー (過去 30 日間)
Vktor Malic
Vktor Malic 2019 年 1 月 16 日
コメント済み: Luna 2019 年 1 月 18 日
Hi,
I have matrix shown bellow:
cd.jpg
I need to extract fields :
  • fname
  • bbpx-x1 , bbpx-y1, bbpx-x2,bbpx-y2 (combined in one row as [39 , 116, 569, 375].
So as a result I should get Output 8144*2 ;
'00001.jpg' [39 , 116, 569, 375]
'00002.jpg' [64 , 336, 159, 275]
... ....
'n.jpg' [n , n, n, n]
Thank you for your help!

採用された回答

Luna
Luna 2019 年 1 月 16 日
Hi Vktor,
Try this below:
outPutCellArray = cell(numel(myStruct),2);
for i = 1:numel(myStruct)
outPutCellArray{i,1} = myStruct(i).fname;
outPutCellArray{i,2} = [myStruct(i).bbpx_x1,myStruct(i).bbpx_y1, myStruct(i).bbpx_x2, myStruct(i).bbpx_y2];
end
  10 件のコメント
Luna
Luna 2019 年 1 月 18 日
Btw, you are asking for a table but showing a dataset example in your variables window. These are also different things too.
Luna
Luna 2019 年 1 月 18 日
Try this then,
outPutCellArray_new = cell(numel(myStruct),2);
for i = 1:numel(myStruct)
temp = [myStruct(i).bbpx_x1,myStruct(i).bbpx_y1, myStruct(i).bbpx_x2, myStruct(i).bbpx_y2];
outPutCellArray_new{i,1} = myStruct(i).fname;
outPutCellArray_new{i,2} = strrep(strrep(strrep(num2str(temp),' ',' '),' ',' '),' ',',');
end
C = cell2table(outPutCellArray_new);

サインインしてコメントする。

その他の回答 (1 件)

Vktor Malic
Vktor Malic 2019 年 1 月 18 日
from this struct:
:download.jpg
I need to extract:
(fname; (bbox_x1,bbox_y1,bbox_x2,bbox_y2))
into the Table, so that (bbox_x1,bbox_y1,bbox_x2,bbox_y2) is string array with commas.

カテゴリ

Help Center および File ExchangeTables についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by