时间:2019-01-17 标签:c#mat2gray(matlab)function
任何人都知道 C# 的图像处理库,其功能类似于 mat2gray 函数在matlab中?
谢谢。
Anybody know of a image processing library for c# that has a function that works like the mat2gray function in matlab?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
类似于:
但是 amin/amax 的东西需要一些微调
Something like:
But the amin/amax stuff needs some finetuning
如果您有权访问 MATLAB Builder NE 工具箱,另一种可能性是使用
deploytool
创建 mat2gray(或您想从 C# 调用的任何其他 MATLAB 功能)的 .NET 接口。然后,您可以将参数包装为 MWArray 对象,调用 MATLAB 函数的 .NET 包装器,并解开返回的 MWArray[] 结果。Another possibility, if you have access to the MATLAB Builder NE toolbox, is to use
deploytool
to create an .NET interface to mat2gray (or any other MATLAB functionality you'd like to call from C#). Then you can just wrap up the arguments as MWArray objects, call the .NET wrapper for the MATLAB function, and unwrap the MWArray[] results that are returned.您可以使用 type 关键字打印 MATLAB 函数的确切实现(内置函数除外)。
You could print the exact implementation of MATLAB functions using the type keyword (apart from built-in functions).