本文介绍了请帮助我如何将代码从Matlab转换为C#?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我该如何转型
下面的代码从matlab到C#?请解释代码?

clear

i = imread(''u.tif'');

%imhist(i)

[N M] = size(i);

%c(1,1:255)= zeros(1,255);

hist=zeros(1,256);

for r = 1 : N

    for c = 1 : M

        pix=i(r,c);

        xpix=pix+1;

        hist(xpix)=hist(xpix)+1;

    end

end

plot(hist);




感谢您的帮助

约翰^ _ ^!没有翻译工具可以帮助您完成这项工作.



how can i transformation
the code below from matlab to C#? with explain the code please?

clear

i = imread(''u.tif'');

%imhist(i)

[N M] = size(i);

%c(1,1:255)= zeros(1,255);

hist=zeros(1,256);

for r = 1 : N

    for c = 1 : M

        pix=i(r,c);

        xpix=pix+1;

        hist(xpix)=hist(xpix)+1;

    end

end

plot(hist);




thanks for help

john ^_^ !

解决方案



这篇关于请帮助我如何将代码从Matlab转换为C#?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 08:00