fixed fp problem

pull/2228/head
Ilya Lavrenov 11 years ago
parent 6d64907f18
commit 1862dbc5ab
  1. 1
      modules/imgproc/src/filter.cpp

@ -3330,6 +3330,7 @@ static std::string kerToStr(const Mat & k)
}
else if (depth == CV_32F)
{
stream.setf(std::ios_base::showpoint);
for (int i = 0; i < width; ++i)
stream << data[i] << "f,";
stream << data[width] << "f";

Loading…
Cancel
Save