0

我正在开发一个 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                    */
};
4

1 回答 1

0

“理发店杆型模式”是每行像素数据的字节数错误的典型标志。

您应该基于wpl返回的值CGImageGetBytesPerRow。最有可能的:

myPix->wpl = CGImageGetBytesPerRow(myCGImage) / 4;

图像的每行字节数与您基于CGImageGetWidth(). 例如,出于性能原因,它可能会被四舍五入,或者图像可能是更宽图像的子图像。

于 2012-12-17T22:57:55.253 回答