我将matlab生成的dll文件集成到我的C#控制台应用程序中。当我运行C#控制台应用程序时,控制台中只显示部分输出。如何生成完整输出?我在C#console应用程序和matlab中的输出也略有不同,原因可能是什么?
matlab文件使用fprintf来显示数据。我在C#中的代码是
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using shoes30;
using MathWorks.MATLAB.NET.Arrays;
using MathWorks.MATLAB.NET.Utility;
namespace shoes_try
{
class Program
{
static void Main(string[] args)
{
shoes30.shoed_desc obj = new shoes30.shoed_desc();
MWArray img = "C:/Users/abcd.a/Desktop/dressimages/T1k5aHXjNqXXc4MOI3_050416.jpg";
obj.shoes(img);
}
}
}
我只获得Console中的部分输出。我的输出很长,它由1000个数据组成,我只得到最后的150个数据。
MATLAB中的代码:
tic;
% for the sparse vectors, just save the nonzero indices and their corresponding values
ttemp = color_weight_vec_coarse(:);
[m n] = size(ttemp);
fprintf([num2str(m) ' ' num2str(n) '\n']);
nonzero_idx = find(ttemp);
fprintf([num2str(numel(nonzero_idx)) '\n']);
for x = 1:numel(nonzero_idx)
% zero based indexing
fprintf([num2str(nonzero_idx(x)-1) ' ' num2str(ttemp(nonzero_idx(x))) '\n']);
end
% for the sparse vectors, just save the nonzero indices and their corresponding values
ttemp = color_weight_vec_fine(:);
[m n] = size(ttemp);
fprintf([num2str(m) ' ' num2str(n) '\n']);
nonzero_idx = find(ttemp);
fprintf([num2str(numel(nonzero_idx)) '\n']);
for x = 1:numel(nonzero_idx)
% zero based indexing
fprintf([num2str(nonzero_idx(x)-1) ' ' num2str(ttemp(nonzero_idx(x))) '\n']);
end
ttemp = shoe_grad_pyramid_shape(:);
[m n] = size(ttemp);
fprintf([num2str(m) ' ' num2str(n) '\n']);
for x = 1:m
for y = 1:n
if y<n
fprintf([num2str(ttemp(x,y)) ' ']);
else
fprintf([num2str(ttemp(x,y)) '\n']);
end
end
end
ttemp = shoe_grad_pyramid_texture(:);
[m n] = size(ttemp);
fprintf([num2str(m) ' ' num2str(n) '\n']);
for x = 1:m
for y = 1:n
if y<n
fprintf([num2str(ttemp(x,y)) ' ']);
else
fprintf([num2str(ttemp(x,y)) '\n']);
end
end
end
toc;
return;