Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way of using Matlab Image Processing Toolbox in F#?

Tags:

.net

r

matlab

f#

I came across this article which lets F# use R. Is anyone aware of a similar way of consuming Matlab libraries in F#? paid as well as free

I could dig up this which is at github here.

But it seems this isn't there yet, I specifically want to use Matlab Image Processing toolbox. I would appreciate if there are any other alternatives for using Matlab Image Processing library in .NET environment as I have some packages written in Matlab that I would like to port to .NET.

like image 770
D.S. Avatar asked Sep 27 '13 18:09

D.S.


People also ask

How do I access image processing toolbox in MATLAB?

iptprefs opens the Image Processing Toolbox™ Preferences dialog box, part of the MATLAB® Preferences dialog box. You can also open this dialog box by clicking Preferences on the Home tab, in the Environment section.

Does MATLAB have image processing toolbox?

Perform image processing, visualization, and analysis. ​Image Processing Toolbox™ provides a comprehensive set of reference-standard algorithms and workflow apps for image processing, analysis, visualization, and algorithm development.

Is MATLAB good for image processing?

Matlab has been extensively used for image processing. It is good for image processing experience is good in it because basic element of Matlab is matrix and image is also in matrix form. Thus Matlab makes image manipulation and processing easier.

How do you code an image in MATLAB processing?

1. Image Processing by using MATLAB Editor Window. In variable 'a', we are importing image using command imread('filename') and then making a plot of '2' row and '3' column using subplot(row, column, position) and displaying the imported image on position '1'. To show the image we use command imshow('filename').


1 Answers

What about calling MATLAB as an engine? Here is information on the MATLAB Engine. Basically, with an installation of MATLAB, you can call other MATLAB from other probramming languages. In the MATLAB help you can find examples of doing this.

Another alternative is to use the Image Processing Toolbox from Octave. Here is a little more in another Stack Overflow Post

like image 82
Jason Nicholson Avatar answered Oct 13 '22 11:10

Jason Nicholson