gpt4 book ai didi

objective-c - 使用 BradLarson/GPUImage 的图像过滤效果 ** 问题

转载 作者:可可西里 更新时间:2023-11-01 06:20:18 24 4
gpt4 key购买 nike

我想给 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。但它不起作用。如果有人可以帮助我,我将不胜感激。

最佳答案

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

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

There are a couple of ways to process a still image and create a result. The first way you can do this is by creating a still image source object and manually creating a filter chain:

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];

For single filters that you wish to apply to an image, you can simply do the following:

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

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

关于objective-c - 使用 BradLarson/GPUImage 的图像过滤效果 ** 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11498636/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com