I'm trying modify AROverlayExample to geting view not from IPHONE Cam but from some url jpg.
Why ?
My webcam in home is set to stream images to http://localhost/cam.jpg and its ok. NExt in office I can get this images via www by http://remoteIP/cam.jpg. Cam.jpg is changing 10times in secound.
Now I'm building app that will show on IPHONE view from home. and I made this like this:
NSURL * imageURL = [NSURL URLWithString:@"http://remoteIP:1008/cam.jpg"];
NSData * imageData = [NSData dataWithContentsOfURL:imageURL];
UIImage * testImage1 = [UIImage imageWithData:imageData];
self.imageView.image = testImage1;
but I have problems with errors when I'm trying to change images to quickly. And I find AROverlayExample.
And my question is how to change this:
- (void)addVideoInput {
AVCaptureDevice *videoDevice = [AVCaptureDevice defaultDeviceWithMediaType:AVMediaTypeVideo];
if (videoDevice) {
NSError *error;
AVCaptureDeviceInput *videoIn = [AVCaptureDeviceInput deviceInputWithDevice:<#(AVCaptureDevice *)#> error:<#(NSError **)#>:videoDevice error:&error];
if (!error) {
if ([[self captureSession] canAddInput:videoIn])
[[self captureSession] addInput:videoIn];
else
NSLog(@"Couldn't add video input");
}
else
NSLog(@"Couldn't create video input");
}
else
NSLog(@"Couldn't create video capture device");
}
to getting image data from URL/file in loop in place of camera device.
THX Niedved