From: Adam Bird on
Hello Michael

Did you ever manage to get the jAi ethernet camera working with matlab? Im having similar problems and would like to know if its possible.

"Michael Allmayer" <i-net.accounts(a)anexia.at> wrote in message <hcsdkv$7vq$1(a)fred.mathworks.com>...
> I'm currently trying to aquire an image of an ethernet camera of the company "jAi". The camera applies to the GigE Vision standard.
>
> Has anyone implemented such a camera and can give me a few hints please?
> Which way is the best and easiest? To import de DLL files from de SDK of jAi? Or to try it with MEX files? Or directly accessing the ethernet?
>
> I've tried load the DLL files from jAi, but with "loadlibrary" I'm always getting errors.
>
> Hope someone can help me :)
>
> Thanks in advance!
From: Michael Allmayer on
Yes, i have.
I the new Matlab 2009 and with its possibility to load a .NET DLL file.
I've written a small DLL in C# which is able to set some parameters and to make an image.
You can easily use the functions in the DLL in Matlab then.
A negative effect of that method is, that it requires a little bit of time to call the function in the dll and to hand over the imagedata. I've made a "liveview" in the way that i capture an image in a loop. But there are only 15fps possible instead of the 30 which the cam supports.

If you want to have more information, feel free to contact me.

"Adam Bird" <a(a)a.com> wrote in message <hif0qi$23s$1(a)fred.mathworks.com>...
> Hello Michael
>
> Did you ever manage to get the jAi ethernet camera working with matlab? Im having similar problems and would like to know if its possible.
>
> "Michael Allmayer" <i-net.accounts(a)anexia.at> wrote in message <hcsdkv$7vq$1(a)fred.mathworks.com>...
> > I'm currently trying to aquire an image of an ethernet camera of the company "jAi". The camera applies to the GigE Vision standard.
> >
> > Has anyone implemented such a camera and can give me a few hints please?
> > Which way is the best and easiest? To import de DLL files from de SDK of jAi? Or to try it with MEX files? Or directly accessing the ethernet?
> >
> > I've tried load the DLL files from jAi, but with "loadlibrary" I'm always getting errors.
> >
> > Hope someone can help me :)
> >
> > Thanks in advance!
From: Adam Bird on
I am trying to create a small interface with a live view that is able to save 4 images in quick sucession. But i am needing help gettin matlab to talk to the camera. I would be very greatful if i could see your code, my personal email is "adam_bird_ at hotmail.com"

Thankyou very much
From: Max on
I am also trying to do something similar. I have already written working c code to capture successive images from the camera but am not sure how to actually display them in matlab. I've tried using imshow but it only updates with the last image, not for every frame. I'm curious to learn how you accomplished this? Thank you very much!!

"Michael Allmayer" <i-net.accounts(a)anexia.at> wrote in message <hif2dc$9im$1(a)fred.mathworks.com>...
> Yes, i have.
> I the new Matlab 2009 and with its possibility to load a .NET DLL file.
> I've written a small DLL in C# which is able to set some parameters and to make an image.
> You can easily use the functions in the DLL in Matlab then.
> A negative effect of that method is, that it requires a little bit of time to call the function in the dll and to hand over the imagedata. I've made a "liveview" in the way that i capture an image in a loop. But there are only 15fps possible instead of the 30 which the cam supports.
>
> If you want to have more information, feel free to contact me.
>
> "Adam Bird" <a(a)a.com> wrote in message <hif0qi$23s$1(a)fred.mathworks.com>...
> > Hello Michael
> >
> > Did you ever manage to get the jAi ethernet camera working with matlab? Im having similar problems and would like to know if its possible.
> >
> > "Michael Allmayer" <i-net.accounts(a)anexia.at> wrote in message <hcsdkv$7vq$1(a)fred.mathworks.com>...
> > > I'm currently trying to aquire an image of an ethernet camera of the company "jAi". The camera applies to the GigE Vision standard.
> > >
> > > Has anyone implemented such a camera and can give me a few hints please?
> > > Which way is the best and easiest? To import de DLL files from de SDK of jAi? Or to try it with MEX files? Or directly accessing the ethernet?
> > >
> > > I've tried load the DLL files from jAi, but with "loadlibrary" I'm always getting errors.
> > >
> > > Hope someone can help me :)
> > >
> > > Thanks in advance!
From: Adam Bird on
Hi max,
I would be very interested to see the code that you are working on, i am still struggling to get matlab to talk to the camera, what version of matlab are you using?

Cheers

"Max " <mxb7642(a)rit.edu> wrote in message <hjsnls$7cs$1(a)fred.mathworks.com>...
> I am also trying to do something similar. I have already written working c code to capture successive images from the camera but am not sure how to actually display them in matlab. I've tried using imshow but it only updates with the last image, not for every frame. I'm curious to learn how you accomplished this? Thank you very much!!