0

Hey Guys 現在、UIImage のすべてのピクセルを反復処理しようとしていますが、それを実装する方法には時間がかかります。だから私はそれを実装した方法が間違っていると思った。これは、ピクセルの RGBA 値を取得する方法です。

+(NSArray*)getRGBAsFromImage:(UIImage*)image atX:(int)xx andY:(int)yy count:(int)count
{
    // Initializing the result array
    NSMutableArray *result = [NSMutableArray arrayWithCapacity:count];

    // First get the image into your data buffer
    CGImageRef imageRef = [image CGImage];                      // creating an Instance of
    NSUInteger width = CGImageGetWidth(imageRef);               // Get width of our Image
    NSUInteger height = CGImageGetHeight(imageRef);             // Get height of our Image
    CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); // creating our colour Space

    // Getting that raw Data out of an image
    unsigned char *rawData = (unsigned char*) calloc(height * width * 4, sizeof(unsigned char));


    NSUInteger bytesPerPixel = 4;                               // Bytes per pixel defined
    NSUInteger bytesPerRow = bytesPerPixel * width;             // Bytes per row
    NSUInteger bitsPerComponent = 8;                            // Bytes per component

    CGContextRef context = CGBitmapContextCreate(rawData, width, height,
                                                 bitsPerComponent, bytesPerRow, colorSpace,
                                                 kCGImageAlphaPremultipliedLast | kCGBitmapByteOrder32Big);
    CGColorSpaceRelease(colorSpace); // releasing the color space

    CGContextDrawImage(context, CGRectMake(0, 0, width, height), imageRef);
    CGContextRelease(context);

    // Now your rawData contains the image data in the RGBA8888 pixel format.
    int byteIndex = (bytesPerRow * yy) + xx * bytesPerPixel;
    for (int ii = 0 ; ii < count ; ++ii)
    {
        CGFloat red   = (rawData[byteIndex]     * 1.0) / 255.0;
        CGFloat green = (rawData[byteIndex + 1] * 1.0) / 255.0;
        CGFloat blue  = (rawData[byteIndex + 2] * 1.0) / 255.0;
        CGFloat alpha = (rawData[byteIndex + 3] * 1.0) / 255.0;
        byteIndex += 4;

        UIColor *acolor = [UIColor colorWithRed:red green:green blue:blue alpha:alpha];
        [result addObject:acolor];
    }

    free(rawData);
    return result;
}

そして、これは私がすべてのピクセルを解析する方法のコードです:

    for (NSUInteger y = 0 ; y < self.originalPictureWidth; y++) {
        for (NSUInteger x = 0 ; x < self.originalPictureHeight; x++) {
            NSArray * originalRGBA = [ComputerVisionHelperClass getRGBAsFromImage:self.originalPicture atX:(int)x andY:(int)y count:1];
            NSArray * referenceRGBA = [ComputerVisionHelperClass getRGBAsFromImage:self.referencePicture atX:(int)referenceIndexX andY:(int)referenceIndexY count:1];
// Do something else ....
        }
    }

uiimage インスタンスのすべての RGBA 値を取得するより高速な方法はありますか?

4

1 に答える 1

1

ピクセルごとに、画像の新しいコピーを生成してから破棄します。はい、データを1回取得してから、そのバイト配列で処理するだけで、はるかに高速になります。

しかし、それは「何か他のことをする」の内容に大きく依存します。画像処理を非常に迅速に実行できるCoreImageおよびvImage関数は多数ありますが、問題へのアプローチを変える必要がある場合があります。それはあなたがしていることに依存します。

于 2013-03-14T16:08:25.533 に答える