0

最近、漢字の OCR について説明しました。FreeType(2.3.5)を使用して文字のサンプルを収集したいのですが、ここに私のコードがあります。

FT_Library fontLibrary;
FT_Face fontFace;
int fontSize = 64;

// Initialize
FT_Init_FreeType(&fontLibrary);
FT_New_Face(fontLibrary, "C:\\Windows\\Fonts\\simhei.ttf", 0, &fontFace);

// Setup
FT_Select_Charmap(fontFace, FT_ENCODING_UNICODE);
FT_Set_Pixel_Sizes(fontFace, fontSize, 0);
FT_Load_Char(fontFace, 'H', FT_LOAD_RENDER);

// Retrieve data
FT_GlyphSlot & glyphSlot = fontFace->glyph;
FT_Bitmap charBitmap = glyphSlot->bitmap;
int charWidth = charBitmap.width;
int charHeight = charBitmap.rows;
unsigned char* charBuffer = charBitmap.buffer;

// Construct image
Mat fontImage(fontSize, fontSize, CV_8UC1);
fontImage = Scalar::all(0);
for (int y = 0; y < charHeight; y++)
{
    int row = fontSize - glyphSlot->bitmap_top + y;
    for (int x = 0; x < charWidth; x++)
    {
        int col = glyphSlot->bitmap_left + x;
        fontImage.at<uchar>(row, col) = charBuffer[y*charWidth + x];
    }
}

imshow("Font Image", fontImage);
waitKey(0);

// Uninitialize
FT_Done_Face(fontFace);
FT_Done_FreeType(fontLibrary);

問題は、文字が画像で中央揃えになっていないことです。文字画像の座標が奇妙に見えます。この例では、「H」文字の座標は (fontSize = 64) です。

bitmap_left = 3
bitmap_top = 44
bitmap.width = 26
bitmap.rows = 43

次に、 image の座標に変換します。

ROI.left = bitmap_left = 3;
ROI.right = bitmap_left + bitmap.width = 29;
ROI.top = fontSize - bitmap_top = 20;
ROI.bottom = fontSize - bitmap_top + bitmap.rows = 63;

したがって、4方向のマージンは次のとおりです。

ROI.leftMargin = 3;
ROI.rightMargin = 64 - 29 = 35;
ROI.topMargin = 20;
ROI.bottomMargin = 64 - 63 = 1;

中央揃えではありません!!!

4

1 に答える 1

-1

私は自分で問題を解決しました。画像の左上の座標はglyphSlotに保存されています。ブログは次のとおりです: http://kang.blog.com/2013/09/21/how-to-convert-the-cartier-coordinate -to-image-coordinate-in-freetype/

于 2013-09-22T12:15:52.857 に答える