zoukankan      html  css  js  c++  java
  • Opencv画图操作

    1. 画矩形

    MyRect rect;
    rect.left = 5;
    rect.top = 5;
    rect.right = 100;
    rect.bottom = 100;
    IplImage * pColorImage = cvCreateImage(cvSize(width, height), 8, 3); cvRectangle(pColorImage, cvPoint(rect.left, rect.top), cvPoint(rect.right, rect.bottom), cvScalar(0, 255, 255), 1, 1, 0);
    cv::Rect rect;
    rect.x = 5;
    rect.y = 5;
    rect.width = 100;
    rect.height = 100;
    cv::Mat dst(rows, cols, CV_8UC1); cv::rectangle(dst, rect, cv::Scalar(
    0, 0, 255), 1, 1, 0); string text = "rectangel1"; cv::putText(dst, text, cv::Point(rect.x, rect.y), cv::FONT_HERSHEY_COMPLEX, 2, cv::Scalar(0, 255, 255), 2, 8, 0);

    putText属性:

    第一个参数是:需要写字的原图像,

    第二个:需要写的内容,string类型的;

    第三个:需要写的内容的左下角的坐标

    第五个:字体大小

    第六个:颜色

    第七个:字体的厚度

    第八个:默认8

  • 相关阅读:
    oracle索引学习
    (转载)Windows下手动完全卸载Oracle
    Funsion Charts 学习(二)
    Funsion Charts 学习(一)
    集合操作
    文件操作
    字典操作
    字符串操作
    列表操作
    python基本运算
  • 原文地址:https://www.cnblogs.com/haiyang21/p/9181620.html
Copyright © 2011-2022 走看看