boundingRect()函式的使用方法

2021-08-18 18:05:44 字數 1022 閱讀 2355

1、boundingrect函式

函式作用:

計算輪廓的垂直邊界最小矩形,矩形是與影象上下邊界平行的

2、boundingrect函式呼叫形式

c++:

rect 

boundingrect

(inputarray 

points

)points 讀入的引數必須是vector或者mat點集

#include "opencv2/highgui/highgui.hpp"

#include "opencv2/imgproc/imgproc.hpp"

#include #include #include using namespace cv;

using namespace std;

mat src; mat src_gray;

int thresh = 100;

int max_thresh = 255;

rng rng(12345);

/// 函式宣告

void thresh_callback(int, void*);

/** @主函式 */

int main(int argc, char** argv)

/** @thresh_callback 函式 */

void thresh_callback(int, void*)

for (int i = 0; i < contours.size(); i++)

/// 畫多邊形輪廓 + 包圍的矩形框 + 圓形框

mat drawing = mat::zeros(threshold_output.size(), cv_8uc3);

for (int i = 0; i< contours.size(); i++)

/// 顯示在乙個視窗

namedwindow("contours", cv_window_autosize);

imshow("contours", drawing);

}

函式的用法 Excel函式TREND函式的用法

trend函式是乙個線性趨勢的 函式,在已知y值 x值的條件下,x對應的y值 trend共有4個引數,三個必選引數,乙個可選引數 同樣的一組資料第四引數不同,結果也是有區別的 灰色曲線是由第四引數為false時得到的結果生成的曲線。通過斜率與截距函式我們計算出這兩條曲線的斜率與截距,可以看出,第四引...

main函式的入口函式

作業系統裝載程式之後,首先執行的 並不是main的第一行,而是某些別的 這些 負責準備好main函式執行所需要的環境,並且負責呼叫main函式,執行這些 的函式稱為入口函式或入口點 entry point 視平台的不同而有不同的名字。程式的入口點實際上是乙個程式的初始化和結束部分,它往往是執行庫的一...

返回函式的函式

廖雪峰python課程裡的 作業的兩種實現方法 1.def createcounter a 0 def counter nonlocal a nonlocal 函式是 引用外部函式 的函式 a 1 a 1等同於a a 1 return a return counter countera create...