Интерпретировать XMP-метаданные в представлении ALAsset

95

Когда пользователь вносит некоторые изменения (кадрирование, удаление эффекта красных глаз и т. Д.) В фотографии во встроенном приложении Photos.app на iOS, изменения не применяются к fullResolutionImageвозвращаемым соответствующим ALAssetRepresentation.

Однако изменения применяются к thumbnailи fullScreenImageвозвращаемым ALAssetRepresentation. Кроме того, информацию о примененных изменениях можно найти в ALAssetRepresentationсловаре метаданных с помощью ключа @"AdjustmentXMP".

Я хотел бы применить эти изменения к fullResolutionImageсебе, чтобы сохранить последовательность. Я обнаружил, что на iOS6 + CIFilter «с filterArrayFromSerializedXMP: inputImageExtent:error:может преобразовать этот XMP-метаданные в массив CIFilter» s:

ALAssetRepresentation *rep; 
NSString *xmpString = rep.metadata[@"AdjustmentXMP"];
NSData *xmpData = [xmpString dataUsingEncoding:NSUTF8StringEncoding];

CIImage *image = [CIImage imageWithCGImage:rep.fullResolutionImage];

NSError *error = nil;
NSArray *filterArray = [CIFilter filterArrayFromSerializedXMP:xmpData 
                                             inputImageExtent:image.extent 
                                                        error:&error];
if (error) {
     NSLog(@"Error during CIFilter creation: %@", [error localizedDescription]);
}

CIContext *context = [CIContext contextWithOptions:nil];

for (CIFilter *filter in filterArray) {
     [filter setValue:image forKey:kCIInputImageKey];
     image = [filter outputImage];
}

Однако это работает только для некоторых фильтров (обрезка, автоматическое усиление), но не работает для других, таких как удаление эффекта красных глаз. В этих случаях CIFilters не имеют видимого эффекта. Поэтому мои вопросы:

  • Кто-нибудь знает, как удалить эффект красных глаз CIFilter? (В соответствии с Photos.app. Фильтра с ключом kCIImageAutoAdjustRedEyeнедостаточно. Например, он не принимает параметры для положения глаз.)
  • Есть ли возможность сгенерировать и применить эти фильтры в iOS 5?
Андреас
источник
Эта ссылка относится к другому вопросу Stackoverflow, который предоставляет алгоритм устранения красных глаз. Это немного, но это начало. stackoverflow.com/questions/133675/red-eye-reduction-algorithm
Roecrew
В iOS 7 указанный код правильно применяет фильтр удаления эффекта красных глаз (внутренний фильтр CIRedEyeCorrections).
paiv

Ответы:

2
ALAssetRepresentation* representation = [[self assetAtIndex:index] defaultRepresentation];

// Create a buffer to hold the data for the asset's image
uint8_t *buffer = (Byte*)malloc(representation.size); // Copy the data from the asset into the buffer
NSUInteger length = [representation getBytes:buffer fromOffset: 0.0  length:representation.size error:nil];

if (length==0)
    return nil;

// Convert the buffer into a NSData object, and free the buffer after.

NSData *adata = [[NSData alloc] initWithBytesNoCopy:buffer length:representation.size freeWhenDone:YES];

// Set up a dictionary with a UTI hint. The UTI hint identifies the type
// of image we are dealing with (that is, a jpeg, png, or a possible
// RAW file).

// Specify the source hint.

NSDictionary* sourceOptionsDict = [NSDictionary dictionaryWithObjectsAndKeys:

(id)[representation UTI], kCGImageSourceTypeIdentifierHint, nil];

// Create a CGImageSource with the NSData. A image source can
// contain x number of thumbnails and full images.

CGImageSourceRef sourceRef = CGImageSourceCreateWithData((CFDataRef) adata,  (CFDictionaryRef) sourceOptionsDict);

[adata release];

CFDictionaryRef imagePropertiesDictionary;

// Get a copy of the image properties from the CGImageSourceRef.

imagePropertiesDictionary = CGImageSourceCopyPropertiesAtIndex(sourceRef,0, NULL);

CFNumberRef imageWidth = (CFNumberRef)CFDictionaryGetValue(imagePropertiesDictionary, kCGImagePropertyPixelWidth);

CFNumberRef imageHeight = (CFNumberRef)CFDictionaryGetValue(imagePropertiesDictionary, kCGImagePropertyPixelHeight);

int w = 0;

int h = 0;

CFNumberGetValue(imageWidth, kCFNumberIntType, &w);

CFNumberGetValue(imageHeight, kCFNumberIntType, &h);

// Clean up memory

CFRelease(imagePropertiesDictionary);
Яш Голвара
источник