Interpretacja metadanych XMP w ALAssetRepresentation


95

Gdy użytkownik wprowadza pewne zmiany (kadrowanie, usuwanie efektu czerwonych oczu, ...) do zdjęć we wbudowanej aplikacji Photos.app w systemie iOS, zmiany nie są stosowane do fullResolutionImagezwracanych przez odpowiedni plikALAssetRepresentation .

Jednak zmiany są stosowane do thumbnaili fullScreenImagezwracane przez ALAssetRepresentation. Ponadto informacje o zastosowanych zmianach można znaleźć w ALAssetRepresentationsłowniku metadanych za pomocą klucza @"AdjustmentXMP".

Chciałbym zastosować te zmiany do fullResolutionImagesiebie, aby zachować spójność. Znalazłem, że na iOS6 + CIFilter „s filterArrayFromSerializedXMP: inputImageExtent:error:można przekonwertować ten XMP-metadane do tablicy 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];
}

Jednak działa to tylko w przypadku niektórych filtrów (kadrowanie, autoregulacja), ale nie w przypadku innych, takich jak usuwanie efektu czerwonych oczu. W takich przypadkach CIFilters nie mają widocznego efektu. Dlatego moje pytania:

  • Czy ktoś zna sposób na usuwanie efektu czerwonych oczu CIFilter? (W pewnym sensie zgodnym z Photos.app. Filtr z kluczem kCIImageAutoAdjustRedEyeto za mało. Np. Nie bierze parametrów dla położenia oczu.)
  • Czy istnieje możliwość wygenerowania i zastosowania tych filtrów pod iOS 5?

To łącze prowadzi do innego pytania Stackoverflow, które zawiera algorytm usuwania efektu czerwonych oczu. To niewiele, ale to początek. stackoverflow.com/questions/133675/red-eye-reduction-algorithm
Roecrew

W systemie iOS 7 podany kod poprawnie stosuje filtr usuwania efektu czerwonych oczu (filtr wewnętrzny CIRedEyeCorrections).
paiv

Odpowiedzi:


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);
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.