Reputation: 1
I'm trying to make a program to enhance an image in LabVIEW. I have already program in matlab codes, but its some built-in functions are not working in LabVIEW since it is not present in LabVIEW mathscript module. The algorithm used to enhance the image is written below
Upvotes: 0
Views: 535
Reputation: 8456
MATLAB can make a dll from your m file (including all of your built-in functions) and then you can call that dll from your Labview. To do so, you need to install MATLAB Compiler Runtime (MCR) on your machine (You don't need that, if you have already installed MATLAB).
If you want to have standalone dll file (not using matlab runtime), you need to use MATLAB Coder (which probably you need to buy it).
I recommend to use MCR first because it is easier to start with and more flexible in using MATLAB features.
Upvotes: 1