I get a error in this code line:
GPUImagePicture *stillImageSource = [[GPUImagePicture alloc] initWithImage:_imagView];
And this is the error:
Incompatible pointer types sending 'UIImageView' to parameter of type 'UIImage*'
Does somebody know what I have to do?
Passing argument of UIImageView instead of UIImage
Change code back to :
GPUImagePicture *stillImageSource = [[GPUImagePicture alloc] initWithImage:_imagView.image];