1

CIColorCube フィルターを使用しようとしています。Apple ページから貼り付けたコードをコピーしました ( 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 に答える