Ask Your Question

Revision history [back]

Yes there is a problem.

try to change line

for (i = 0; i < n; i++) _sDone.at<int>(0,i) = -1;

in

for (i = 0; i < n; i++) _sDone.at<int>(i,0) = -1;

Yes there is a problem.

try to change line

for (i = 0; i < n; i++) _sDone.at<int>(0,i) = -1;

in

for (i = 0; i < n; i++) _sDone.at<int>(i,0) = -1;

Yes there is a problem.

try to change line

for (i = 0; i < n; i++) _sDone.at<int>(0,i) = -1;

in

for (i = 0; i < n; i++) _sDone.at<int>(i,0) = -1;

issue and PR