From: Fanny on
I build a MATLAB dll named TEST1. I would like to pass an image from
picture box in vb.net to the TEST dll. But, I got this error:
"Input argument "A" is undefined"

This is coding in TEST1 dll:
function ImageProcessing = test2(A)

This is coding in vb.net that call the wrapped dll
Dim A As Object = imgTP1.Image
Dim objTEST As TEST1.Testing1Class

objTEST = New TEST1.Testing1Class
objTEST.test2(1, objTemplate, A)

Is there anyone who know about this? I will be grateful if anyone can
shed some light on this problem or suggest an alternative.
Thanks.