So I'm on my way to getting going with matlab and image processing. I decided to figure out how to turn my phone into an ip webcam and get the images into matlab.
I used the IP Webcam app on the phone. I was able to get the network stream open in VLC player.
>> img = imread ('http://10.0.0.5:8080/photo.jpg') ;
>>imshow(img);


