關於cvIntegral函式的一些說明

2022-09-01 03:27:20 字數 791 閱讀 2344

1

void

cvintegral(

2const cvarr*image,

3 cvarr*sum,

4 cvarr*sqsum,

5 cvarr*tilted_sum

6 );

首先要注意的是sum是(w+1)*(h+1)大小的

其次要注意sum和sqsum的資料型別:

輸入影象image:       wxh,              8-bit or floating-point (32f or 64f) image.                        (ipl_depth_8u/ipl_depth_32f/ipl_depth_64f)

積分影象sum:         (w+1)x(h+1), 32-bit integer or double precision floating-point (64f).       (ipl_depth_32s/ipl_depth_64f)

積分平方影象sqsum:(w+1)x(h+1), double precision floating-point (64f)                                 (ipl_depth_64f)

最後一點需要注意的是:

因為輸出的積分影象和積分平方影象是(w+1)x(h+1)的,

在計算乙個矩形區域的和的時候,計算如下:

關於DLL的函式

關於dll的函式 用於宣告匯入匯出函式 declspec dllexport 宣告乙個匯出函式,一般用於dll中 declspec dllimport 宣告乙個匯入函式,一般用於使用某個dll的exe中 更詳細的可以看msdn 動態鏈結庫中定義有兩種函式 匯出函式 export function 和...

作業 關於函式的

public class test02 hello system.err.println bye 可以完成特定功能的 塊,並且能重複呼叫 返回值 函式名 引數列表 函式體 public static void hello public static void println int x public...

關於next permutation函式的模擬!

現在有一道很簡單的題目,那就是輸出1 n的所有排列數!比如說,輸入n 5 那麼要求求出1,2,3,4,5這幾個數所有的排列數!c 中有乙個next permutation函式,它包含在algorithm標頭檔案中,可以方便的求出所有的排列 數,可是你知道它是怎麼實現的麼?現在,我對那個函式進行了簡單...