计算文字大小

时间:2018-05-15 15:22:39

标签: c++ image opencv image-processing

注意:此问题How to put text into a bounding box in OpenCV?在某种程度上类似于此问题,但它不是同一个问题。问题的OP尝试将文本扩展到他的图像的整个大小。得到标记的答案中的代码只是使用掩码调整文本大小。

我正在使用openCVC++结合进行一些图像检测&操纵。

所以我想在特定的原点对齐未知长度的文本。应该计算字体比例,因为我想指定最大文字宽度的宽度系数,如下图所示:

![enter image description here

这是我到目前为止的代码:

int fontFace = cv::FONT_HERSHEY_DUPLEX,
    fontScale = myTextString.size() / 10;

cv::Size textSize = getTextSize(image, fontFace, fontScale, 0, 0);
putText(image, myTextString, cv::Point( (origin.x + textSize.width)/2, (origin.y + textSize.height)/2 ), fontFace, fontScale, Scalar(255, 0, 0));

1 个答案:

答案 0 :(得分:3)

这样的事情应该这样做。您可以更改边距的计算方式,以更改字体的水平/垂直对齐方式。

如果高度无关紧要,您可以留下target.height一个大号。

void drawtorect(cv::Mat & mat, cv::Rect target, int face, int thickness, cv::Scalar color, const std::string & str)
{
    cv::Size rect = cv::getTextSize(str, face, 1.0, thickness, 0);
    double scalex = (double)target.width / (double)rect.width;
    double scaley = (double)target.height / (double)rect.height;
    double scale = std::min(scalex, scaley);
    int marginx = scale == scalex ? 0 : (int)((double)target.width * (scalex - scale) / scalex * 0.5);
    int marginy = scale == scaley ? 0 : (int)((double)target.height * (scaley - scale) / scaley * 0.5);
    cv::putText(mat, str, cv::Point(target.x + marginx, target.y + target.height - marginy), face, scale, color, thickness, 8, false);
}

*编辑*

// Sample code
int L = 80; // width and height per square
int M = 60;
cv::Mat m( 5*M, 7*L,CV_8UC3,cv::Scalar(0,0,0) );
// create checkerboard
for ( int y=0,ymax=m.rows-M;y<=ymax; y+=M)
{
    int c = (y/M)%2 == 0 ? 0 : 1;
    for ( int x=0,xmax=m.cols-L;x<=xmax;x+=L)
    {
        if ( (c++)%2!=0 )
            continue; // skip odd squares
        // convenient way to do this
        m( cv::Rect(x,y,L,M) ).setTo( cv::Scalar(64,64,64) );
    }
}
// fill checkerboard ROIs by some text
int64 id=1;
for ( int y=0,ymax=m.rows-M;y<=ymax; y+=M)
{
    for ( int x=0,xmax=m.cols-L;x<=xmax;x+=L)
    {
        std::stringstream ss;
        ss<<(id<<=1); // some increasing text input
        drawtorect( m, cv::Rect(x,y,L,M), cv::FONT_HERSHEY_PLAIN,1,cv::Scalar(255,255,255),ss.str() );
    }
}

enter image description here