Effacer les filtres
Effacer les filtres

How do I specify parameter types (specifically Image types) of a function in a .NET assembly created by MATLAB?

1 vue (au cours des 30 derniers jours)
Hi everyone!
I have the following code in a MATLAB function;
function [ returnValue] = ProcessImage( passedImage )
originalImage = imread(passedImage);
[rowSize colSize] = size(originalImage);
returnValue = colSize
end
I built a .NET assembly with this bit of code. I then added it as a reference to a C#.NET application. I now need to pass an image from the .NET application this bit of code, which will process the image and return its column size.
I'm not sure how to go about the type setting. Cuz when I try it out, a syntax error is shown in Visual Studio saying that the argument expected is of type int.
Have I written the MATLAB function declaration correctly?
  4 commentaires
Geoff Hayes
Geoff Hayes le 28 Juin 2014
So is the C# application that doesn't' like the return value from ProcessImage? If that is the case, then cast colSize as an integer
returnValue = int32(colSize);
The above is for a 32-bit signed integer. If something different is needed, then cast as appropriate.
Lahiru
Lahiru le 28 Juin 2014
This is just a sample code I posted here. In my actual code I take in a string (imagePath - after your suggestion) and return a string. However, in VS2012, both the input params and the return values type is detected as int.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Geometric Transformation and Image Registration dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by