Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

acessing tv tuner in matlab

Status
Not open for further replies.

vishnupg

Member level 3
Joined
Dec 24, 2009
Messages
64
Helped
1
Reputation
2
Reaction score
1
Trophy points
1,288
Location
india
Activity points
1,719
hai can anyone help to to display video from tv tuner svideo input through matlab.i am new to matlab,but want to do it for my final project.the tv tuner card is from pinacle.model is pinacle 110i.also help me with senting data through com port
 

try this for com port interface
If you have a device connected to the serial port COM1 and configured for a baud rate of 9600, execute the following example.

cp = serial('COM1');
set(cp,'BaudRate',4800);
fopen(cp);
fprintf(cp,'hello')
out = fscanf(cp);
fclose(cp)
delete(cp)
clear cp

---------- Post added at 17:26 ---------- Previous post was at 17:25 ----------

if ur tvtunner is external one then u can interface using USB interface..
 
thank u nikhilele.can u pls post comments for each step so that i can know each commemt. the tv tuner is not external it is internal.so is there ant chance of acessing it.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top