ip camera and image processing with matlab ?

조회 수: 1 (최근 30일)
che adil
che adil 2012년 7월 10일
hello!
I have a project on image processing matlab (R2010a) in real time using a camera IP (H.264, Teltonika), so I do not know how it works on matlab to use the images made by the ip cam ? if you have ideas about this...? thank you in advance!
adil
  댓글 수: 2
Walter Roberson
Walter Roberson 2012년 7월 11일
When I search on that brand name, Teltonika, I only find one camera model, the MVC-100 EDGE Camera. Is that the model you are referring to?
che adil
che adil 2012년 8월 3일
yes :) have you an idea ?

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

답변 (2개)

Walter Roberson
Walter Roberson 2012년 8월 4일
편집: Walter Roberson 2012년 8월 4일
The MVC-100 EDGE camera supports a few different access modes.
The access mode that you would most like, streaming H.264, is not supported by MATLAB (MATLAB supports H.264 files but not streaming H.264.)
The MVC-100 supports streaming JPEG. I did not study the manual thoroughly (partly because it was clearly missing explaining a few points that would be clearer if one had access to the device), but it appears to me that you can access the JPEG images by access the web server on the MVC-100.
My experience with streaming JPEG suggests that you are going to have a problem if you attempt to urlread() or urlwrite() the page: streaming works by the HTML server continually saying, "What follows has two parts; the first part is a JPEG image, and I'll tell you what the second part is later. And when you get to the later, the HTML server says, "Well this is something that consists of two parts, the first of which is JPEG and I'll tell you what the second part is later." And so on until finally the last image in the stream is sent and the HTML server says, "Okay, here's the final part, and it's empty." With this scheme, urlwrite() or urlread() would have to read through all of the images, because both of them have to read the "complete" web page, and neither of them have a mechanism for the programmer to say "Okay, send me just the next part at the moment".
It is a programming task which certainly can be dealt with, but MATLAB does not (as far as I recall) provide any routine to handle the situation.
The alternative is to arrange for there to be another program on the computer (e.g. an MS Windows process) which receives the H.264 stream and breaks it up into images which MATLAB can read one by one (such as via ActiveX.) I did encounter a person who named a particular MS Windows program for this purpose, but I have not been able to find that posting since.
There is also an ActiveX interface to the camera, but there was no documentation as to what that interface could do, and no documentation about the Methods or the data types involved.
  댓글 수: 7
Walter Roberson
Walter Roberson 2012년 8월 10일
I am on vacation and have been doing vacation activities.
che adil
che adil 2012년 8월 12일
oh sorry!^^ bonne vacance :)

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


Alfonso
Alfonso 2013년 4월 13일
편집: Alfonso 2013년 4월 13일
Have you found any solution?

카테고리

Help CenterFile Exchange에서 MATLAB Support Package for IP Cameras에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by