tweak formating

git-svn-id: https://zxing.googlecode.com/svn/trunk@2489 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
smparkes@smparkes.net 2012-10-29 22:33:26 +00:00
parent 1cb7380961
commit 7a82d685a3

View file

@ -33,10 +33,17 @@
namespace math_utils = zxing::common::detector::math_utils; namespace math_utils = zxing::common::detector::math_utils;
namespace zxing { using std::ostringstream;
namespace qrcode { using std::min;
using std::max;
using namespace std; using std::isnan;
using zxing::qrcode::Detector;
using zxing::Ref;
using zxing::BitMatrix;
using zxing::ResultPointCallback;
using zxing::DetectorResult;
using zxing::PerspectiveTransform;
using zxing::qrcode::AlignmentPattern;
Detector::Detector(Ref<BitMatrix> image) : Detector::Detector(Ref<BitMatrix> image) :
image_(image) { image_(image) {
@ -299,6 +306,3 @@ namespace zxing {
- alignmentAreaLeftX, alignmentAreaBottomY - alignmentAreaTopY, overallEstModuleSize, callback_); - alignmentAreaLeftX, alignmentAreaBottomY - alignmentAreaTopY, overallEstModuleSize, callback_);
return alignmentFinder.find(); return alignmentFinder.find();
} }
}
}