我正在开发一个 Cocoa OS X 程序来清理扫描的页面,并希望使用Leptonica 的库来完成繁重的工作。我在这篇文章、这个和这个中找到了一些信息. 我当然可以从 NSImage 获得 CGImage 并且可以将数据写入 Leptonica Pix 图像。我遇到的问题是,我的图像有 75% 的时间出现扭曲,并带有理发店杆型图案(从图像顶部到底部的每一连续像素行都向右移动得越来越远)。有时虽然图片出来很好。我认为我在设置图像数据时做错了,但这并不是我的强项,所以我无法理解这个问题。我正在使用以下代码创建 Pix 图像:
CGImageRef myCGImage = [processedImage CGImageForProposedRect:NULL context:NULL hints:NULL];
CFDataRef data = CGDataProviderCopyData(CGImageGetDataProvider(myCGImage));
const UInt8 *imageData = CFDataGetBytePtr(data);
Pix *myPix = (Pix *) malloc(sizeof(Pix));
myPix->w = (int)CGImageGetWidth (myCGImage);
myPix->h = (int)CGImageGetHeight (myCGImage);
myPix->d = (int)CGImageGetBitsPerPixel(myCGImage);
myPix->wpl = ((CGImageGetWidth (myCGImage)*CGImageGetBitsPerPixel(myCGImage))+31)/32;
myPix->informat = IFF_TIFF;
myPix->data = (l_uint32 *) imageData;
myPix->colormap = NULL;
pix 结构体定义如下:
/*-------------------------------------------------------------------------*
* Basic Pix *
*-------------------------------------------------------------------------*/
struct Pix
{
uint32 w; /* width in pixels */
uint32 h; /* height in pixels */
uint32 d; /* depth in bits */
uint32 wpl; /* 32-bit words/line */
uint32 refcount; /* reference count (1 if no clones) */
int xres; /* image res (ppi) in x direction */
/* (use 0 if unknown) */
int yres; /* image res (ppi) in y direction */
/* (use 0 if unknown) */
int informat; /* input file format, IFF_* */
char *text; /* text string associated with pix */
struct PixColormap *colormap; /* colormap (may be null) */
uint32 *data; /* the image data */
};