1

私はiOSの初心者開発者です。デバイスでこのコードを実行すると、エラーが発生します。

/**
 * Structure to keep one pixel in RGBA format
 */

struct pixel {
    unsigned char r, g, b, a;
};

/**
 * Process the image and return the number of pure red pixels in it.
 */

- (NSUInteger) processImage: (UIImage*) image
{
    NSUInteger numberOfRedPixels = 0;

    // Allocate a buffer big enough to hold all the pixels

    struct pixel* pixels = (struct pixel*) calloc(1, image.size.width * image.size.height * sizeof(struct pixel));
    if (pixels != nil)
    {
        // Create a new bitmap

        CGContextRef context = CGBitmapContextCreate(
            (void*) pixels,
            image.size.width,
            image.size.height,
            8,
            image.size.width * 4,
            CGImageGetColorSpace(image.CGImage),
            kCGImageAlphaPremultipliedLast
        );

        if (context != NULL)
        {
            // Draw the image in the bitmap

            CGContextDrawImage(context, CGRectMake(0.0f, 0.0f, image.size.width, image.size.height), image.CGImage);

            // Now that we have the image drawn in our own buffer, we can loop over the pixels to
            // process it. This simple case simply counts all pixels that have a pure red component.

            // There are probably more efficient and interesting ways to do this. But the important
            // part is that the pixels buffer can be read directly.

            NSUInteger numberOfPixels = image.size.width * image.size.height;

            while (numberOfPixels > 0) {
                if (pixels->r == 255) {
                    numberOfRedPixels++;
                }
                pixels++;
                numberOfPixels--;
            }

            CGContextRelease(context);
        }

        free(pixels);
    }

    return numberOfRedPixels;
}

エラーは次のとおりです: PTP(4821,0x3ece6d98) malloc: * オブジェクト 0x45a9e00 のエラー: 解放されるポインターが割り当てられませんでした *デバッグするために malloc_error_break にブレークポイントを設定します。

このエラーの修正を手伝ってください。どうもありがとう。

4

2 に答える 2

1

これは古いスレッドですが、ここに回答を投稿すると思いました。

エラーは pixel++ 行にあります。@Michael が指摘したように、ループ内でアドレスが変更されていました。私の解決策は、 while ブロック全体を次のものに置き換えることでした。

for (int i=0; i<numberOfPixels; i++) {
    if (pixels[i].r == 255) {
        numberOfRedPixels++;
    }
}

乾杯!

于 2013-12-27T19:48:25.100 に答える
0

pixelsを呼び出した後、 の元の値へのポインタを保持していることを確認してくださいcalloc。これは、 に渡す必要があるアドレスですfree。ループ内でこのアドレスを変更しています。

于 2012-12-14T05:11:18.680 に答える