mirror of
https://github.com/opencv/opencv.git
synced 2026-07-30 15:53:03 +04:00
fixed many warnings (modified pull request 13)
This commit is contained in:
@@ -817,7 +817,7 @@ bool DpSeamFinder::estimateSeam(
|
||||
{
|
||||
pair<float, int> opt = *min_element(steps, steps + nsteps);
|
||||
cost(y, x) = opt.first;
|
||||
control(y, x) = opt.second;
|
||||
control(y, x) = (uchar)opt.second;
|
||||
reachable(y, x) = 255;
|
||||
}
|
||||
}
|
||||
@@ -847,7 +847,7 @@ bool DpSeamFinder::estimateSeam(
|
||||
{
|
||||
pair<float, int> opt = *min_element(steps, steps + nsteps);
|
||||
cost(y, x) = opt.first;
|
||||
control(y, x) = opt.second;
|
||||
control(y, x) = (uchar)opt.second;
|
||||
reachable(y, x) = 255;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user