我正在尝试使用GPUImage框架从相机拍摄照片。使用标准implementation。但是我的输出图像分辨率太低-{640,852}。有没有办法获得更高的分辨率?
最佳答案
不久前,我遇到了同样的问题。这是设置AVCaptureSession
的方式。
尝试使用以下方法初始化相机:
GPUImageStillCamera *videoCamera = [[GPUImageStillCamera alloc]
initWithSessionPreset:AVCaptureSessionPresetPhoto
cameraPosition:AVCaptureDevicePositionBack];
关于iphone - GPUImageStillCamera输出图像分辨率,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15300761/