我的朋友在matlab中编写了很好的图像处理功能(使用图像处理工具箱),有一种方法可以自动将此matlab代码生成为c代码(源代码),我可以将它包装在.net可以加载的dll中???
using System;
using System.Runtime.InteropServices;
class PlatformInvokeTest
{
[DllImport("imp.dll")]
public static extern int puts(string c);
[DllImport("imp2.dll")]
internal static extern int _flushall();
public static void Main()
{
puts("Test");
_flushall();
}
}
谢谢