Skip to content

Commit 9c77fa7

Browse files
committed
Remove unused code
1 parent 10d567f commit 9c77fa7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

modules/ximgproc/src/fourier_descriptors.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -319,9 +319,6 @@ void transformFD(InputArray _src, InputArray _t,OutputArray _dst, bool fdContou
319319
Z.at<Vec2d>(0, 0) += Vec2d(t.at<double>(0, 3), t.at<double>(0, 4));
320320
std::vector<Point2d> z;
321321
dft(Z, z, DFT_INVERSE);
322-
std::vector<Point> c;
323-
for (int j = 0; j<static_cast<int>(z.size()); j++)
324-
c.push_back(Point2d(z[j].x, z[j].y));
325322
Mat(z).copyTo(_dst);
326323
}
327324

0 commit comments

Comments
 (0)