4

我想为 UIImage 添加不同的效果。目前我正在尝试使用 GUIImage 库。https://github.com/BradLarson/GPUImage 但是,我无法运行提供的大多数示例。对我来说唯一有效的例子是FilterShowcase它工作得很好。

但问题是,它只适用于相机。我想要的是将静态图像加载到 UIImageView 并应用这些过滤器。

我试过了,但做不到。

这就是我尝试的方式

  - (void)setupFilter;
{
//    videoCamera = [[GPUImageVideoCamera alloc]  initWithSessionPreset:AVCaptureSessionPreset640x480 cameraPosition:AVCaptureDevicePositionBack];
////    videoCamera = [[GPUImageVideoCamera alloc] initWithSessionPreset:AVCaptureSessionPreset640x480 cameraPosition:AVCaptureDevicePositionFront];
//    videoCamera.outputImageOrientation = UIInterfaceOrientationPortrait;


UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 320, 350)];

imgView.Image=[UIImage imageNamed:@"WID-small.jpg"];

[self.view addSubview:imgView];

BOOL needsSecondImage = NO;

switch (filterType)
{
    case GPUIMAGE_SEPIA:
    {
        self.title = @"Sepia Tone";
        self.filterSettingsSlider.hidden = NO;

        [self.filterSettingsSlider setValue:1.0];
        [self.filterSettingsSlider setMinimumValue:0.0];
        [self.filterSettingsSlider setMaximumValue:1.0];

        filter = [[GPUImageSepiaFilter alloc] init];

        sourcePicture = [[GPUImagePicture alloc] initWithImage:imgView.image smoothlyScaleOutput:YES];
        [sourcePicture processImage];            
        [sourcePicture addTarget:filter];




    }; break;

实际上我试图做的是,加载静止图像而不是videoCamera。但它不起作用。如果有人可以帮助我,将不胜感激。

4

1 回答 1

12

首先,其他示例应用程序可能无法为您构建的原因有几个。如本答案所述,请确保您在 Xcode 窗口的左上角选择了应用程序的方案,而不是 GPUImage 框架项目。如果更改没有帮助,请退出 Xcode,从您的 DerivedData 目录中删除相关项目目录,然后重新启动 Xcode。由于最近 Xcode 版本中的错误,有时似乎需要这样做。

图像的过滤在项目文档中进行了描述,该文档位于 Readme.md 文件和您上面链接的页面上。特别是,请参阅标题为“处理静止图像”的部分:

有几种方法可以处理静止图像并创建结果。第一种方法是创建静止图像源对象并手动创建过滤器链:

UIImage *inputImage = [UIImage imageNamed:@"Lambeau.jpg"];

GPUImagePicture *stillImageSource = [[GPUImagePicture alloc] initWithImage:inputImage];
GPUImageSepiaFilter *stillImageFilter = [[GPUImageSepiaFilter alloc] init];

[stillImageSource addTarget:stillImageFilter];
[stillImageSource processImage];

UIImage *currentFilteredVideoFrame = [stillImageFilter imageFromCurrentlyProcessedOutput];

对于您希望应用于图像的单个过滤器,您可以简单地执行以下操作:

GPUImageSepiaFilter *stillImageFilter2 = [[GPUImageSepiaFilter alloc] init];
UIImage *quickFilteredImage = [stillImageFilter2 imageByFilteringImage:inputImage];

SimpleImageFilter 示例应用程序更详细地展示了如何执行此操作。

于 2012-07-16T18:30:06.997 回答