我一直在努力建立一个包含图像及其预设值和其他重要参数的数据库。但是很遗憾,我无法将说10
图像的初始数据保存在一个.csv
文件中。我通过创建.csv
文件但保存了最后一个值并覆盖了所有先前的值,使代码运行正常。我还给出了一次修改后的代码,该代码使用sprintf
在代码中进行了注释,但它每次迭代分别生成.csv
文件。但我想制作一个包含所有相应值的.csv
列的7
文件。
我的代码在下面,我的代码输出附加在Output中。
请有人指导我如何制作具有.csv
值的单个10
文件(可以在最终数据库中增加到数百个)以保存在1个.csv
文件中。
clc
clear all
myFolder = 'C:\Users\USER\Desktop\PixROIDirectory\PixelLabelData_1';
filePattern = fullfile(myFolder, '*.png'); % Change to whatever pattern you need
theFiles = dir(filePattern);
load('gTruthPIXDATA.mat','gTruth')
gTruth.LabelDefinitions;
for i=1:10
%gTruth.LabelData{i,1};
baseFileName = theFiles(i).name;
fullFileName = fullfile(myFolder, baseFileName);
fprintf(1, 'Now reading %s\n', fullFileName);
imageArray = imread(fullFileName);
oUt = regionprops(imageArray,'BoundingBox');
Y = floor(oUt.BoundingBox);
X_axis = Y(1);
Y_axis = Y(2);
Width = Y(3);
Height = Y(4);
CLASS = gTruth.LabelDefinitions{1,1};
JPG = gTruth.DataSource.Source{i,1};
PNG = gTruth.LabelData{i,1};
OUTPUT = [JPG X_axis Y_axis Width Height CLASS PNG]
% myFile = sprintf('value%d.csv',i);
% csvwrite(myFile,OUTPUT);
end
答案 0 :(得分:3)
尝试使用fprintf(https://www.mathworks.com/help/matlab/ref/fprintf.html)。
您需要打开要写入的输出文件,然后可以在每次迭代中向其添加行
简单的例子:
A = [1:10]; % made up a matrix of numbers
fid = fopen('test.csv','w'); % open a blank csv and set as writable
for i = 1:length(A) % loop through the matrix
fprintf(fid,'%i\n',A(i)); % print each integer, then a line break \n
end
fclose(fid); % close the file for writing