Інтерпретувати метадані XMP в ALAssetRepresentation


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);
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.