mirror of
https://github.com/zxing/zxing.git
synced 2025-03-05 20:48:51 -08:00
tweak formating
git-svn-id: https://zxing.googlecode.com/svn/trunk@2489 59b500cc-1b3d-0410-9834-0bbf25fbcc57
This commit is contained in:
parent
1cb7380961
commit
7a82d685a3
|
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in a new issue