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 Center および File ExchangeMATLAB 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