ALAssetRepresentation içinde XMP-Metadata'yı Yorumlama


95

Bir kullanıcı iOS üzerindeki yerleşik Photos.app içindeki fotoğraflarda bazı değişiklikler (kırpma, kırmızı göz giderme, ...) yaptığında, değişiklikler fullResolutionImagekarşılık gelen tarafından döndürülenlere uygulanmaz ALAssetRepresentation.

Ancak, değişikliklerin uygulanır thumbnailve fullScreenImagedöndürdüğü ALAssetRepresentation. Ayrıca, uygulanan değişikliklerle ilgili bilgiler ALAssetRepresentation, anahtar aracılığıyla, metadata sözlüğünde bulunabilir @"AdjustmentXMP".

fullResolutionImageTutarlılığı korumak için bu değişiklikleri kendime uygulamak istiyorum. İOS6 + CIFilter ' lardafilterArrayFromSerializedXMP: inputImageExtent:error: bu XMP meta verilerini bir dizi dizisine dönüştürebileceğini öğrendim CIFilter:

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];
}

Ancak, bu yalnızca bazı filtrelerde (kırpma, otomatik iyileştirme) işe yararken kırmızı göz giderme gibi diğerleri için geçerli değildir. Bu durumlarda, CIFiltere-postaların görünür bir etkisi yoktur. Bu nedenle sorularım:

  • Kırmızı göz gidermenin bir yolunu bilen var mı CIFilter? (Photos.app ile tutarlı bir şekilde. Anahtarlı filtre kCIImageAutoAdjustRedEyeyeterli değil. Örneğin, gözlerin pozisyonu için parametre almıyor.)
  • Bu filtreleri iOS 5 altında oluşturma ve uygulama imkanı var mı?

Bu bağlantı, kırmızı göz için bir algoritma sağlayan başka bir Stackoverflow sorusudur. Fazla değil ama bu bir başlangıç. stackoverflow.com/questions/133675/red-eye-reduction-algorithm
Roecrew

İOS 7'de listelenen kod doğru şekilde kırmızı göz giderme filtresi uygular (CIRedEyeCorrections dahili filtresi).
paiv

Yanıtlar:


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);
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.