1

我正在尝试使用 CIColorCube 过滤器。我已经从苹果页面复制了粘贴的代码(https://developer.apple.com/library/ios/documentation/GraphicsImaging/Conceptual/CoreImaging/ci_filer_recipes/ci_filter_recipes.html#//apple_ref/doc/uid/TP30001185 -CH4-SW1)但我无法运行代码。我已经修改了代码,并设法摆脱了一些错误,但由于长度错误而无法编译。有人可以帮忙吗?

-(NSImage*)getImageFiltered :(NSURL*)theImage forValue:(double)value
{
CIImage * ciImage = [CIImage imageWithContentsOfURL:theImage];
// Allocate memory
const unsigned int size = 64;
float *cubeData = (float *)malloc (size * size * size * sizeof (float) * 4);
float rgb[3];

// Populate cube with a simple gradient going from 0 to 1
for (int z = 0; z < size; z++){
    rgb[2] = ((double)z)/(size-1)+(value/100); // Blue value
    for (int y = 0; y < size; y++){
        rgb[1] = ((double)y)/(size-1)+(value/100); // Green value
        for (int x = 0; x < size; x ++){
            float alpha=1.0f;
            c[0] = rgb[0] * alpha;
            c[1] = rgb[1] * alpha;
            c[2] = rgb[2] * alpha;
            c[3] = alpha;
            c += 4;
                        }
    }
}
// Create memory with the cube data
NSData *data = [NSData dataWithBytesNoCopy:cubeData
                                    length:sizeof(*cubeData)
                              freeWhenDone:YES];
CIFilter *colorCube = [CIFilter filterWithName:@"CIColorCube"];
[colorCube setValue:@(size) forKey:@"inputCubeDimension"];
// Set data for cube
[colorCube setValue:data forKey:@"inputCubeData"];
[colorCube setValue:ciImage forKey:kCIInputImageKey];


 CIImage *result = [colorCube valueForKey: kCIOutputImageKey];
 NSCIImageRep *rep = [NSCIImageRep imageRepWithCIImage:result];
 NSImage *nsImage = [[NSImage alloc] initWithSize:rep.size];
 [nsImage addRepresentation:rep];
 return nsImage;
} 

达里奥

4

1 回答 1

2

length:您的通话价值需要dataWithBytesNoCopy:类似于

size_t cubeDataSize = size * size * size * sizeof ( float ) * 4;

但是,您的代码还有其他一些问题;查看这个工作示例:

https://github.com/vhbit/ColorCubeSample/blob/master/ColorCube/ViewController.m

于 2014-04-18T00:30:20.847 回答