我正在尝试使用Core Image进行图像缩放,使用Lanczos Scale Transform滤镜。 我正在进行扩展时很好。但是在缩放并保存为JPEG时,我发现了一类产生奇怪噪声伪像和行为的图像。
对于inputScale倍数为0.5:0.5,0.25,0.125等,它总是很好。 对于其他inputScale值,它已被破坏。
当我保存到TIFF,PNG,JPEG2000或在屏幕上绘图时 - 没关系。 当我保存到JPG或BMP时 - 它已经坏了。
我上传了示例图片: (original, 4272x2848, 3.4Mb) [http://www.zoomfoot.com/get/package/517e2423-7795-4239-a166-03d507ec51d8]
(scaled with noise, 1920x1280, 2.2Mb) [http://www.zoomfoot.com/get/package/6eb64d33-3a30-4e8d-9953-67ce1e7d7ef9]
此外,“日落”图像的重复性也非常好。
我尝试了更多方法来缩放图像。使用CIAffineTransform并使用NSImage本身绘图。两者都提供无任何噪音的结果。
以下是我用于缩放的代码。节约:
================= Lanczos ==============
- (NSImage *) scaleLanczosImage:(NSString *)path
Width:(int) desiredWidth
Height:(int) desiredHeight
{
CIImage *image=[CIImage imageWithContentsOfURL:
[NSURL fileURLWithPath:path]];
CIFilter *scaleFilter = [CIFilter filterWithName:@"CILanczosScaleTransform"];
int originalHeight=[image extent].size.height;
int originalWidth=[image extent].size.width;
float yScale=(float)desiredHeight / (float)originalHeight;
float xScale=(float)desiredWidth / (float)originalWidth;
float scale=fminf(yScale, xScale);
[scaleFilter setValue:[NSNumber numberWithFloat:scale]
forKey:@"inputScale"];
[scaleFilter setValue:[NSNumber numberWithFloat:1.0]
forKey:@"inputAspectRatio"];
[scaleFilter setValue: image
forKey:@"inputImage"];
image = [scaleFilter valueForKey:@"outputImage"];
NSBitmapImageRep* rep = [[NSBitmapImageRep alloc] initWithCIImage:image];
NSMutableDictionary *options=[NSMutableDictionary dictionaryWithObject:[NSDecimalNumber numberWithFloat:1.0]
forKey:NSImageCompressionFactor];
[options setValue:[NSNumber numberWithBool:YES] forKey:NSImageProgressive];
NSData* jpegData = [rep representationUsingType:NSJPEGFileType
properties:options];
[jpegData writeToFile:@"/Users/dmitry/tmp/img_4389-800x600.jpg" atomically:YES];
}
================= NSImage ==============
- (void) scaleNSImage:(NSString *)path
Width:(int) desiredWidth
Height:(int) desiredHeight
{
NSImage *sourceImage = [[NSImage alloc] initWithContentsOfFile:path];
NSImage *resizedImage = [[NSImage alloc] initWithSize:
NSMakeSize(desiredWidth, desiredHeight)];
NSSize originalSize = [sourceImage size];
[resizedImage lockFocus];
[sourceImage drawInRect: NSMakeRect(0, 0, desiredWidth, desiredHeight)
fromRect: NSMakeRect(0, 0, originalSize.width, originalSize.height)
operation: NSCompositeSourceOver fraction: 1.0];
[resizedImage unlockFocus];
NSMutableDictionary *options=[NSMutableDictionary dictionaryWithObject:[NSDecimalNumber numberWithFloat:1.0]
forKey:NSImageCompressionFactor];
[options setValue:[NSNumber numberWithBool:YES] forKey:NSImageProgressive];
NSBitmapImageRep *rep = [[NSBitmapImageRep alloc]
initWithData:[resizedImage TIFFRepresentation]];
NSData* jpegData = [rep representationUsingType:NSJPEGFileType
properties:options];
[jpegData writeToFile:@"~/nsimg_4389-800x600.jpg" atomically:YES];
}
如果有人可以在这里解释或提出建议,我真的很感激。
感谢。
答案 0 :(得分:1)
CIImage有一些缩放的怪癖。 Dan Wood的帖子this会帮忙吗?
答案 1 :(得分:1)
我的理解是,由于其性质,硬件Core Image渲染器在渲染除了屏幕显示之外的任何东西时都有一些奇怪的怪癖。因此,建议您在其他情况下使用软件渲染器。
http://developer.apple.com/mac/library/qa/qa2005/qa1416.html
答案 2 :(得分:0)
这绝对是一个CoreImage错误。将文件发送到bugreport.apple.com