project 2015
project 2015

Reputation: 1

Image enhancement using LabVIEW

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

  1. input image in RGB
  2. Contrast stretching of the model
  3. RGB to HSI
  4. contrast stretching of S&I
  5. display the RGB image So please help to implement this algorithm in LabVIEW

Upvotes: 0

Views: 535

Answers (1)

Kamran Bigdely
Kamran Bigdely

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

Related Questions