我正試圖在Halide中實現Meijster距離變換算法。我已經將this code改寫爲C++(使用openCV)並且工作正常。關於這種算法的文章是here。現在我的鹵化物代碼是完成50% - 第一階段工作正常,現在我有問題,第2階段(在鏈接的代碼掃描3)(簡體)是這樣的:Halide - while while loop
//g is 2 dimensional cv::Mat (something like array) - result of previous stage
// m is g.width and n is g.height
int(*functionF)(int x, int i, int g_i) = EDT_f;
int(*functionSep)(int i, int u, int g_i, int g_u, int max_value) = EDT_Sep;
cv::Mat dt = cv::Mat(n, m, CV_32SC1);
int* s = new int[m];
int* t = new int[m];
int q = 0, w;
for (int y = 0; y<n; y++)
{
q = 0;
s[0] = 0;
t[0] = 0;
// Scan 3
for (int u = 1; u<m; u++)
{
//how can i replace this loop:
while (q >= 0 && functionF(t[q], s[q], g.at<int>(y, s[q])) > functionF(t[q], u, g.at<int>(y, u)))
q--;
//some operations which might change value of q, s[] and t[]
}
// Scan 4 - not important here
}
有任何鹵化物友好方式來取代這個while循環?現在唯一的解決辦法,到目前爲止我來是smething像這樣(沒有測試過):
Expr calculateQ(Expr currentQValue, Expr y, Func t, Func s, Func g)
{
//while (q >= 0 && functionF(t[q], s[q], g.at<int>(y, s[q])) > functionF(t[q], u, g.at<int>(y, u)))
//q--;
return select(currentQValue >= 0 && functionF(t[q], s[q], g[s[q], y]) > functionF(t[q], u, g[u, y]), calculateQ(currentQValue - 1, y, t, s, g), currentQValue);
}
但即使這會的工作,最有可能的鹵化物將試圖評估選擇這兩個值檢查條件之前遞歸會使其非常緩慢。
如果沒有辦法實現while Halide循環有什麼方法可以在Halide中使用代碼的一部分?任何其他想法?
感謝您的幫助!這絕對應該解決問題,我會盡快測試它。 – cyriel