Path: news.mathworks.com!not-for-mail
From: "Sadik " <sadik.hava@gmail.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Capture Acuisition.
Date: Sun, 21 Jun 2009 22:00:04 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 23
Message-ID: <h1mah4$qub$1@fred.mathworks.com>
References: <h1m8sh$et9$1@fred.mathworks.com>
Reply-To: "Sadik " <sadik.hava@gmail.com>
NNTP-Posting-Host: webapp-02-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1245621604 27595 172.30.248.37 (21 Jun 2009 22:00:04 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Sun, 21 Jun 2009 22:00:04 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 1666517
Xref: news.mathworks.com comp.soft-sys.matlab:549362


You could connect it as a web cam [if you could, I don't know really] and then you could do something like:

cam=imaqhwinfo;
cam.InstalledAdaptors;
vid=videoinput('winvideo',1,'RGB24_640x480')
triggerconfig(vid,'manual');%sets the object to manual triggering
set(vid,'FramesPerTrigger',1);
set(vid,'TriggerRepeat',Inf);
start(vid);
trigger(vid);
im = getdata(vid,1);

im should be your image.



"Mohammad Salehizadeh" <en66salehi.mohammad@example.com> wrote in message <h1m8sh$et9$1@fred.mathworks.com>...
> Hi ,
> 
> Please let me know is it possible to acquire a picture from my Sony Ericson Mobile directly to Matlab without any capture card? If so please tell me how?
> 
> Sincerely,
> M.Salehizadeh