Connect Genie and Gige cameras' IP to Matlab

조회 수: 2 (최근 30일)
Beñat Estala
Beñat Estala 2018년 11월 22일
댓글: Beñat Estala 2018년 11월 27일
Hi,
I would like to connect those cameras with Matlab, using for that their IP adress, to display their live video. Is there any way in Matlab R2018a?
Thanks for your help!
Beñat

채택된 답변

Nikilesh Chilkuru
Nikilesh Chilkuru 2018년 11월 26일
You can find the list of gige cameras discovered by MATLAB using the command below
gigecamlist
Now you can connect to the gige camera you want to connect to from the list by using the IP address as shown below:
g = gigecam('169.254.242.122') % Create a gigecam object using the IP address
To view the live video stream, use the preview function passing the above object.
preview(g)
The preview window displays live video stream from your camera. The preview dynamically updates, so if you change a property while previewing, the image changes to reflect the property change.
To get more information on image acquisition using Gige Cameras, refer: https://www.mathworks.com/help/imaq/acquire-images-from-gige-vision-cameras.html
  댓글 수: 1
Beñat Estala
Beñat Estala 2018년 11월 27일
That's what I was looking for, thanks a lot!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by