├── Alphabet ├── A.qrchar ├── B.qrchar ├── C.qrchar ├── D.qrchar ├── E.qrchar ├── F.qrchar ├── G.qrchar ├── H.qrchar ├── I.qrchar ├── J.qrchar ├── K.qrchar ├── L.qrchar ├── M.qrchar ├── N.qrchar ├── O.qrchar ├── P.qrchar ├── Q.qrchar ├── R.qrchar ├── S.qrchar ├── T.qrchar ├── U.qrchar ├── V.qrchar ├── W.qrchar ├── X.qrchar ├── Y.qrchar ├── Z.qrchar └── skeleton.qrchar ├── AppFrame.sln ├── AppFrame ├── AlgoAppImageColor.cpp ├── AlgoAppImageColor.h ├── AppAlgoBinarization.cpp ├── AppAlgoBinarization.h ├── AppAlgoColorMapping.cpp ├── AppAlgoColorMapping.h ├── AppAlgoETF.cpp ├── AppAlgoETF.h ├── AppAlgoEncodingOptimization.cpp ├── AppAlgoEncodingOptimization.h ├── AppAlgoEncodingRSModify.cpp ├── AppAlgoEncodingRSModify.h ├── AppAlgoEnergyTextSpace.cpp ├── AppAlgoEnergyTextSpace.h ├── AppAlgoEnergyVisual.cpp ├── AppAlgoEnergyVisual.h ├── AppAlgoMGFontWeightAdjustment.cpp ├── AppAlgoMGFontWeightAdjustment.h ├── AppAlgoMGLetterWarping.cpp ├── AppAlgoMGLetterWarping.h ├── AppAlgoMGStreamlineWarping.cpp ├── AppAlgoMGStreamlineWarping.h ├── AppAlgoMGWarpingOperator.h ├── AppAlgoMGWarpingOptimization.cpp ├── AppAlgoMGWarpingOptimization.h ├── AppAlgoModuleBlending.cpp ├── AppAlgoModuleBlending.h ├── AppAlgoModuleSelection.cpp ├── AppAlgoModuleSelection.h ├── AppAlgoProbabilityModel.cpp ├── AppAlgoProbabilityModel.h ├── AppAlgoProbabilityModule.cpp ├── AppAlgoProbabilityModule.h ├── AppAlgoQRC.cpp ├── AppAlgoQRC.h ├── AppAlgoQRCodeBGColor.cpp ├── AppAlgoQRCodeBGColor.h ├── AppAlgoQRCodeEvaluation.cpp ├── AppAlgoQRCodeEvaluation.h ├── AppAlgoQRCodeRenderer.cpp ├── AppAlgoQRCodeRenderer.h ├── AppAlgoQRCodeSegmentation.cpp ├── AppAlgoQRCodeSegmentation.h ├── AppAlgoQRCodeTest.cpp ├── AppAlgoQRCodeTest.h ├── AppAlgoRegionSeg.cpp ├── AppAlgoRegionSeg.h ├── AppAlgoStreamlineTrace.cpp ├── AppAlgoStreamlineTrace.h ├── AppAlgoTextAlign.cpp ├── AppAlgoTextAlign.h ├── AppAlgoTextBigScale.cpp ├── AppAlgoTextBigScale.h ├── AppAlgoTextColor.cpp ├── AppAlgoTextColor.h ├── AppAlgoTextDelete.cpp ├── AppAlgoTextDelete.h ├── AppAlgoTextGeneration.cpp ├── AppAlgoTextGeneration.h ├── AppAlgoTextOrderOri.cpp ├── AppAlgoTextOrderOri.h ├── AppAlgoTextTyping.cpp ├── AppAlgoTextTyping.h ├── AppAlgoTextWarping.cpp ├── AppAlgoTextWarping.h ├── AppAlgoZBar.cpp ├── AppAlgoZBar.h ├── AppAlgoZXing.cpp ├── AppAlgoZXing.h ├── AppAlgorithm.h ├── AppAlogQRCodeTest.cpp ├── AppConfigFile.cpp ├── AppConfigFile.h ├── AppConfigSection.cpp ├── AppData.h ├── AppDeclare.h ├── AppFrame.cpp ├── AppFrame.vcxproj ├── AppFrame.vcxproj.filters ├── AppFrame.vcxproj.user ├── AppGlobal.cpp ├── AppGlobal.h ├── AppGrabCut.cpp ├── AppGrabCut.h ├── AppIOManager.cpp ├── AppIOManager.h ├── AppIOManagerDefault.cpp ├── AppItem.cpp ├── AppItem.h ├── AppLayerManager.h ├── AppLayerManagerDefault.cpp ├── AppMediaItem.cpp ├── AppMediaItem.h ├── AppMediaPlayer.cpp ├── AppMediaPlayer.h ├── AppPainter.cpp ├── AppPainter.h ├── AppParameter.h ├── AppProperty.h ├── AppQRCData.h ├── AppRender.h ├── AppRenderDefault.cpp ├── AppRes.resx ├── AppState.cpp ├── AppState.h ├── AppStateGrabCut.cpp ├── AppStateIdle.cpp ├── AppStatePaint.cpp ├── AppStateXForm.cpp ├── AppStroke.h ├── AppStrokeBrush.cpp ├── AppStrokeErase.cpp ├── AppTool.h ├── AppToolManager.cpp ├── AppToolManager.h ├── AppToolManagerDefault.cpp ├── AppUtils.cpp ├── AppUtils.h ├── AppWordArtData.h ├── AppXForm.cpp ├── AppXForm.h ├── AssemblyInfo.cpp ├── EdgeLinking │ ├── HKEdgeLinking.cpp │ ├── HKEdgeLinking.h │ └── MATLAB │ │ ├── cleanedgelist.m │ │ ├── drawedgelist.m │ │ ├── edgelink.m │ │ ├── edgelist2image.m │ │ ├── findendsjunctions.m │ │ ├── index.html │ │ ├── lineseg.m │ │ ├── maxlinedev.m │ │ └── test.bmp ├── Form1.h ├── Form1.resx ├── Form_Algorithm.cpp ├── Form_Ctrl.cpp ├── Form_Event.cpp ├── Form_GLPanel.cpp ├── Form_Item.cpp ├── Form_MQRC.cpp ├── Form_QRCode.cpp ├── Form_Tool.cpp ├── Form_WordArt.cpp ├── GraphCut │ ├── GCoptimization.cpp │ ├── GCoptimization.h │ ├── LinkedBlockList.cpp │ ├── LinkedBlockList.h │ ├── block.h │ ├── energy.h │ ├── graph.cpp │ ├── graph.h │ └── maxflow.cpp ├── Json │ ├── AUTHORS │ ├── LICENSE │ ├── SConstruct │ ├── doxybuild.py │ ├── include │ │ └── json │ │ │ ├── autolink.h │ │ │ ├── config.h │ │ │ ├── features.h │ │ │ ├── forwards.h │ │ │ ├── json.h │ │ │ ├── reader.h │ │ │ ├── value.h │ │ │ └── writer.h │ ├── lib │ │ ├── LibJson.lib │ │ └── LibJson_d.lib │ ├── makerelease.py │ └── version ├── QREncode │ ├── bitstream.cpp │ ├── bitstream.h │ ├── config.h │ ├── mask.cpp │ ├── mask.h │ ├── mmask.cpp │ ├── mmask.h │ ├── mqrspec.cpp │ ├── mqrspec.h │ ├── qrBitData.cpp │ ├── qrBitData.h │ ├── qrFlag.cpp │ ├── qrFlag.h │ ├── qrencode.cpp │ ├── qrencode.h │ ├── qrencode_inner.h │ ├── qrinput.cpp │ ├── qrinput.h │ ├── qrspec.cpp │ ├── qrspec.h │ ├── rscode.cpp │ ├── rscode.h │ ├── split.cpp │ └── split.h ├── QRWordArt │ ├── HSSGLFrameBufferObject.cpp │ ├── HSSGLFrameBufferObject.h │ ├── HSSSplineSample.h │ ├── HSSVec2.cpp │ ├── HSSVec2.h │ ├── HSplineCore.h │ ├── HSplinePath.cpp │ ├── HSplinePath.h │ ├── JsonApp.cpp │ ├── JsonApp.h │ ├── QRCharFBO.cpp │ ├── QRCharFBO.h │ ├── QRCharacter.cpp │ ├── QRCharacter.h │ ├── QRCharacterIO.cpp │ ├── QRCharacterIO.h │ ├── QRNode.cpp │ ├── QRNode.h │ ├── QRPattern.cpp │ ├── QRPattern.h │ ├── QRPatternFBO.cpp │ ├── QRPatternFBO.h │ ├── QRSkeleton.cpp │ ├── QRSkeleton.h │ ├── QRSplineFBO.cpp │ ├── QRSplineFBO.h │ ├── QRStringLine.cpp │ ├── QRStringLine.h │ ├── QRWordArtIO.cpp │ └── QRWordArtIO.h ├── WordArtRender.cpp ├── WordArtRender.h ├── YJPSNRSSIM.cpp ├── YJPSNRSSIM.h ├── ZBar │ ├── qrdetector.h │ └── zBar.lib ├── ZXing │ ├── ImageSource.cpp │ ├── ImageSource.h │ ├── include │ │ ├── win32 │ │ │ └── zxing │ │ │ │ ├── iconv.h │ │ │ │ ├── stdint.h │ │ │ │ └── win_iconv.c │ │ └── zxing │ │ │ ├── BarcodeFormat.h │ │ │ ├── Binarizer.h │ │ │ ├── BinaryBitmap.h │ │ │ ├── ChecksumException.h │ │ │ ├── DecodeHints.h │ │ │ ├── Exception.h │ │ │ ├── FormatException.h │ │ │ ├── IllegalStateException.h │ │ │ ├── InvertedLuminanceSource.h │ │ │ ├── LuminanceSource.h │ │ │ ├── MultiFormatReader.h │ │ │ ├── NotFoundException.h │ │ │ ├── Reader.h │ │ │ ├── ReaderException.h │ │ │ ├── Result.h │ │ │ ├── ResultPoint.h │ │ │ ├── ResultPointCallback.h │ │ │ ├── ZXing.h │ │ │ ├── aztec │ │ │ ├── AztecDetectorResult.h │ │ │ ├── AztecReader.h │ │ │ ├── decoder │ │ │ │ └── Decoder.h │ │ │ └── detector │ │ │ │ └── Detector.h │ │ │ ├── common │ │ │ ├── Array.h │ │ │ ├── BitArray.h │ │ │ ├── BitMatrix.h │ │ │ ├── BitSource.h │ │ │ ├── CharacterSetECI.h │ │ │ ├── Counted.h │ │ │ ├── DecoderResult.h │ │ │ ├── DetectorResult.h │ │ │ ├── GlobalHistogramBinarizer.h │ │ │ ├── GreyscaleLuminanceSource.h │ │ │ ├── GreyscaleRotatedLuminanceSource.h │ │ │ ├── GridSampler.h │ │ │ ├── HybridBinarizer.h │ │ │ ├── IllegalArgumentException.h │ │ │ ├── PerspectiveTransform.h │ │ │ ├── Point.h │ │ │ ├── Str.h │ │ │ ├── StringUtils.h │ │ │ ├── detector │ │ │ │ ├── JavaMath.h │ │ │ │ ├── MathUtils.h │ │ │ │ ├── MonochromeRectangleDetector.h │ │ │ │ └── WhiteRectangleDetector.h │ │ │ └── reedsolomon │ │ │ │ ├── GenericGF.h │ │ │ │ ├── GenericGFPoly.h │ │ │ │ ├── ReedSolomonDecoder.h │ │ │ │ └── ReedSolomonException.h │ │ │ ├── datamatrix │ │ │ ├── DataMatrixReader.h │ │ │ ├── Version.h │ │ │ ├── decoder │ │ │ │ ├── BitMatrixParser.h │ │ │ │ ├── DataBlock.h │ │ │ │ ├── DecodedBitStreamParser.h │ │ │ │ └── Decoder.h │ │ │ └── detector │ │ │ │ ├── CornerPoint.h │ │ │ │ ├── Detector.h │ │ │ │ └── DetectorException.h │ │ │ ├── multi │ │ │ ├── ByQuadrantReader.h │ │ │ ├── GenericMultipleBarcodeReader.h │ │ │ ├── MultipleBarcodeReader.h │ │ │ └── qrcode │ │ │ │ ├── QRCodeMultiReader.h │ │ │ │ └── detector │ │ │ │ ├── MultiDetector.h │ │ │ │ └── MultiFinderPatternFinder.h │ │ │ ├── oned │ │ │ ├── CodaBarReader.h │ │ │ ├── Code128Reader.h │ │ │ ├── Code39Reader.h │ │ │ ├── Code93Reader.h │ │ │ ├── EAN13Reader.h │ │ │ ├── EAN8Reader.h │ │ │ ├── ITFReader.h │ │ │ ├── MultiFormatOneDReader.h │ │ │ ├── MultiFormatUPCEANReader.h │ │ │ ├── OneDReader.h │ │ │ ├── OneDResultPoint.h │ │ │ ├── UPCAReader.h │ │ │ ├── UPCEANReader.h │ │ │ └── UPCEReader.h │ │ │ ├── pdf417 │ │ │ ├── PDF417Reader.h │ │ │ ├── decoder │ │ │ │ ├── BitMatrixParser.h │ │ │ │ ├── DecodedBitStreamParser.h │ │ │ │ ├── Decoder.h │ │ │ │ └── ec │ │ │ │ │ ├── ErrorCorrection.h │ │ │ │ │ ├── ModulusGF.h │ │ │ │ │ └── ModulusPoly.h │ │ │ └── detector │ │ │ │ ├── Detector.h │ │ │ │ └── LinesSampler.h │ │ │ └── qrcode │ │ │ ├── ErrorCorrectionLevel.h │ │ │ ├── FormatInformation.h │ │ │ ├── QRCodeReader.h │ │ │ ├── Version.h │ │ │ ├── decoder │ │ │ ├── BitMatrixParser.h │ │ │ ├── DataBlock.h │ │ │ ├── DataMask.h │ │ │ ├── DecodedBitStreamParser.h │ │ │ ├── Decoder.h │ │ │ └── Mode.h │ │ │ └── detector │ │ │ ├── AlignmentPattern.h │ │ │ ├── AlignmentPatternFinder.h │ │ │ ├── Detector.h │ │ │ ├── FinderPattern.h │ │ │ ├── FinderPatternFinder.h │ │ │ └── FinderPatternInfo.h │ └── lib │ │ ├── -libzxing.lib │ │ ├── libzxing.lib │ │ └── libzxingd.lib ├── app.ico ├── app.rc ├── flowabs │ ├── include │ │ ├── GLee.h │ │ ├── flowabs.h │ │ ├── flowabsLIB.h │ │ ├── flowabsParam.h │ │ ├── flowabsProp.h │ │ ├── glsl_program.h │ │ └── texture_2d.h │ └── lib │ │ ├── flowabs.lib │ │ └── flowabsd.lib ├── resource.h ├── stdafx.cpp └── stdafx.h └── README.md /Alphabet/A.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/A.qrchar -------------------------------------------------------------------------------- /Alphabet/B.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/B.qrchar -------------------------------------------------------------------------------- /Alphabet/C.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/C.qrchar -------------------------------------------------------------------------------- /Alphabet/D.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/D.qrchar -------------------------------------------------------------------------------- /Alphabet/E.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/E.qrchar -------------------------------------------------------------------------------- /Alphabet/F.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/F.qrchar -------------------------------------------------------------------------------- /Alphabet/G.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/G.qrchar -------------------------------------------------------------------------------- /Alphabet/H.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/H.qrchar -------------------------------------------------------------------------------- /Alphabet/I.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/I.qrchar -------------------------------------------------------------------------------- /Alphabet/J.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/J.qrchar -------------------------------------------------------------------------------- /Alphabet/K.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/K.qrchar -------------------------------------------------------------------------------- /Alphabet/L.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/L.qrchar -------------------------------------------------------------------------------- /Alphabet/M.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/M.qrchar -------------------------------------------------------------------------------- /Alphabet/N.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/N.qrchar -------------------------------------------------------------------------------- /Alphabet/O.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/O.qrchar -------------------------------------------------------------------------------- /Alphabet/P.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/P.qrchar -------------------------------------------------------------------------------- /Alphabet/Q.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/Q.qrchar -------------------------------------------------------------------------------- /Alphabet/R.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/R.qrchar -------------------------------------------------------------------------------- /Alphabet/S.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/S.qrchar -------------------------------------------------------------------------------- /Alphabet/T.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/T.qrchar -------------------------------------------------------------------------------- /Alphabet/U.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/U.qrchar -------------------------------------------------------------------------------- /Alphabet/V.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/V.qrchar -------------------------------------------------------------------------------- /Alphabet/W.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/W.qrchar -------------------------------------------------------------------------------- /Alphabet/X.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/X.qrchar -------------------------------------------------------------------------------- /Alphabet/Y.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/Y.qrchar -------------------------------------------------------------------------------- /Alphabet/Z.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/Z.qrchar -------------------------------------------------------------------------------- /Alphabet/skeleton.qrchar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/Alphabet/skeleton.qrchar -------------------------------------------------------------------------------- /AppFrame.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame.sln -------------------------------------------------------------------------------- /AppFrame/AlgoAppImageColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AlgoAppImageColor.cpp -------------------------------------------------------------------------------- /AppFrame/AlgoAppImageColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AlgoAppImageColor.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoBinarization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoBinarization.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoBinarization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoBinarization.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoColorMapping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoColorMapping.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoColorMapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoColorMapping.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoETF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoETF.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoETF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoETF.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoEncodingOptimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoEncodingOptimization.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoEncodingOptimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoEncodingOptimization.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoEncodingRSModify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoEncodingRSModify.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoEncodingRSModify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoEncodingRSModify.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoEnergyTextSpace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoEnergyTextSpace.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoEnergyTextSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoEnergyTextSpace.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoEnergyVisual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoEnergyVisual.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoEnergyVisual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoEnergyVisual.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoMGFontWeightAdjustment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoMGFontWeightAdjustment.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoMGFontWeightAdjustment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoMGFontWeightAdjustment.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoMGLetterWarping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoMGLetterWarping.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoMGLetterWarping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoMGLetterWarping.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoMGStreamlineWarping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoMGStreamlineWarping.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoMGStreamlineWarping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoMGStreamlineWarping.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoMGWarpingOperator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoMGWarpingOperator.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoMGWarpingOptimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoMGWarpingOptimization.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoMGWarpingOptimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoMGWarpingOptimization.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoModuleBlending.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoModuleBlending.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoModuleBlending.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoModuleBlending.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoModuleSelection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoModuleSelection.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoModuleSelection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoModuleSelection.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoProbabilityModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoProbabilityModel.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoProbabilityModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoProbabilityModel.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoProbabilityModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoProbabilityModule.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoProbabilityModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoProbabilityModule.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRC.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRC.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRCodeBGColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRCodeBGColor.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRCodeBGColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRCodeBGColor.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRCodeEvaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRCodeEvaluation.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRCodeEvaluation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRCodeEvaluation.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRCodeRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRCodeRenderer.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRCodeRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRCodeRenderer.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRCodeSegmentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRCodeSegmentation.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRCodeSegmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRCodeSegmentation.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRCodeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRCodeTest.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoQRCodeTest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoQRCodeTest.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoRegionSeg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoRegionSeg.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoRegionSeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoRegionSeg.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoStreamlineTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoStreamlineTrace.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoStreamlineTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoStreamlineTrace.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextAlign.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextAlign.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextAlign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextAlign.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextBigScale.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextBigScale.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextBigScale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextBigScale.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextColor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextColor.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextColor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextColor.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextDelete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextDelete.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextDelete.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextGeneration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextGeneration.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextGeneration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextGeneration.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextOrderOri.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextOrderOri.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextOrderOri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextOrderOri.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextTyping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextTyping.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextTyping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextTyping.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextWarping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextWarping.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoTextWarping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoTextWarping.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoZBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoZBar.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoZBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoZBar.h -------------------------------------------------------------------------------- /AppFrame/AppAlgoZXing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoZXing.cpp -------------------------------------------------------------------------------- /AppFrame/AppAlgoZXing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgoZXing.h -------------------------------------------------------------------------------- /AppFrame/AppAlgorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlgorithm.h -------------------------------------------------------------------------------- /AppFrame/AppAlogQRCodeTest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppAlogQRCodeTest.cpp -------------------------------------------------------------------------------- /AppFrame/AppConfigFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppConfigFile.cpp -------------------------------------------------------------------------------- /AppFrame/AppConfigFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppConfigFile.h -------------------------------------------------------------------------------- /AppFrame/AppConfigSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppConfigSection.cpp -------------------------------------------------------------------------------- /AppFrame/AppData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppData.h -------------------------------------------------------------------------------- /AppFrame/AppDeclare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppDeclare.h -------------------------------------------------------------------------------- /AppFrame/AppFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppFrame.cpp -------------------------------------------------------------------------------- /AppFrame/AppFrame.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppFrame.vcxproj -------------------------------------------------------------------------------- /AppFrame/AppFrame.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppFrame.vcxproj.filters -------------------------------------------------------------------------------- /AppFrame/AppFrame.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppFrame.vcxproj.user -------------------------------------------------------------------------------- /AppFrame/AppGlobal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppGlobal.cpp -------------------------------------------------------------------------------- /AppFrame/AppGlobal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppGlobal.h -------------------------------------------------------------------------------- /AppFrame/AppGrabCut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppGrabCut.cpp -------------------------------------------------------------------------------- /AppFrame/AppGrabCut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppGrabCut.h -------------------------------------------------------------------------------- /AppFrame/AppIOManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppIOManager.cpp -------------------------------------------------------------------------------- /AppFrame/AppIOManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppIOManager.h -------------------------------------------------------------------------------- /AppFrame/AppIOManagerDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppIOManagerDefault.cpp -------------------------------------------------------------------------------- /AppFrame/AppItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppItem.cpp -------------------------------------------------------------------------------- /AppFrame/AppItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppItem.h -------------------------------------------------------------------------------- /AppFrame/AppLayerManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppLayerManager.h -------------------------------------------------------------------------------- /AppFrame/AppLayerManagerDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppLayerManagerDefault.cpp -------------------------------------------------------------------------------- /AppFrame/AppMediaItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppMediaItem.cpp -------------------------------------------------------------------------------- /AppFrame/AppMediaItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppMediaItem.h -------------------------------------------------------------------------------- /AppFrame/AppMediaPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppMediaPlayer.cpp -------------------------------------------------------------------------------- /AppFrame/AppMediaPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppMediaPlayer.h -------------------------------------------------------------------------------- /AppFrame/AppPainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppPainter.cpp -------------------------------------------------------------------------------- /AppFrame/AppPainter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppPainter.h -------------------------------------------------------------------------------- /AppFrame/AppParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppParameter.h -------------------------------------------------------------------------------- /AppFrame/AppProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppProperty.h -------------------------------------------------------------------------------- /AppFrame/AppQRCData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppQRCData.h -------------------------------------------------------------------------------- /AppFrame/AppRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppRender.h -------------------------------------------------------------------------------- /AppFrame/AppRenderDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppRenderDefault.cpp -------------------------------------------------------------------------------- /AppFrame/AppRes.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppRes.resx -------------------------------------------------------------------------------- /AppFrame/AppState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppState.cpp -------------------------------------------------------------------------------- /AppFrame/AppState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppState.h -------------------------------------------------------------------------------- /AppFrame/AppStateGrabCut.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppStateGrabCut.cpp -------------------------------------------------------------------------------- /AppFrame/AppStateIdle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppStateIdle.cpp -------------------------------------------------------------------------------- /AppFrame/AppStatePaint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppStatePaint.cpp -------------------------------------------------------------------------------- /AppFrame/AppStateXForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppStateXForm.cpp -------------------------------------------------------------------------------- /AppFrame/AppStroke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppStroke.h -------------------------------------------------------------------------------- /AppFrame/AppStrokeBrush.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppStrokeBrush.cpp -------------------------------------------------------------------------------- /AppFrame/AppStrokeErase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppStrokeErase.cpp -------------------------------------------------------------------------------- /AppFrame/AppTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppTool.h -------------------------------------------------------------------------------- /AppFrame/AppToolManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppToolManager.cpp -------------------------------------------------------------------------------- /AppFrame/AppToolManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppToolManager.h -------------------------------------------------------------------------------- /AppFrame/AppToolManagerDefault.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppToolManagerDefault.cpp -------------------------------------------------------------------------------- /AppFrame/AppUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppUtils.cpp -------------------------------------------------------------------------------- /AppFrame/AppUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppUtils.h -------------------------------------------------------------------------------- /AppFrame/AppWordArtData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppWordArtData.h -------------------------------------------------------------------------------- /AppFrame/AppXForm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppXForm.cpp -------------------------------------------------------------------------------- /AppFrame/AppXForm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AppXForm.h -------------------------------------------------------------------------------- /AppFrame/AssemblyInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/AssemblyInfo.cpp -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/HKEdgeLinking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/HKEdgeLinking.cpp -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/HKEdgeLinking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/HKEdgeLinking.h -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/MATLAB/cleanedgelist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/MATLAB/cleanedgelist.m -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/MATLAB/drawedgelist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/MATLAB/drawedgelist.m -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/MATLAB/edgelink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/MATLAB/edgelink.m -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/MATLAB/edgelist2image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/MATLAB/edgelist2image.m -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/MATLAB/findendsjunctions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/MATLAB/findendsjunctions.m -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/MATLAB/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/MATLAB/index.html -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/MATLAB/lineseg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/MATLAB/lineseg.m -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/MATLAB/maxlinedev.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/MATLAB/maxlinedev.m -------------------------------------------------------------------------------- /AppFrame/EdgeLinking/MATLAB/test.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/EdgeLinking/MATLAB/test.bmp -------------------------------------------------------------------------------- /AppFrame/Form1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form1.h -------------------------------------------------------------------------------- /AppFrame/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form1.resx -------------------------------------------------------------------------------- /AppFrame/Form_Algorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form_Algorithm.cpp -------------------------------------------------------------------------------- /AppFrame/Form_Ctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form_Ctrl.cpp -------------------------------------------------------------------------------- /AppFrame/Form_Event.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form_Event.cpp -------------------------------------------------------------------------------- /AppFrame/Form_GLPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form_GLPanel.cpp -------------------------------------------------------------------------------- /AppFrame/Form_Item.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form_Item.cpp -------------------------------------------------------------------------------- /AppFrame/Form_MQRC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form_MQRC.cpp -------------------------------------------------------------------------------- /AppFrame/Form_QRCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form_QRCode.cpp -------------------------------------------------------------------------------- /AppFrame/Form_Tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form_Tool.cpp -------------------------------------------------------------------------------- /AppFrame/Form_WordArt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Form_WordArt.cpp -------------------------------------------------------------------------------- /AppFrame/GraphCut/GCoptimization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/GraphCut/GCoptimization.cpp -------------------------------------------------------------------------------- /AppFrame/GraphCut/GCoptimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/GraphCut/GCoptimization.h -------------------------------------------------------------------------------- /AppFrame/GraphCut/LinkedBlockList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/GraphCut/LinkedBlockList.cpp -------------------------------------------------------------------------------- /AppFrame/GraphCut/LinkedBlockList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/GraphCut/LinkedBlockList.h -------------------------------------------------------------------------------- /AppFrame/GraphCut/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/GraphCut/block.h -------------------------------------------------------------------------------- /AppFrame/GraphCut/energy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/GraphCut/energy.h -------------------------------------------------------------------------------- /AppFrame/GraphCut/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/GraphCut/graph.cpp -------------------------------------------------------------------------------- /AppFrame/GraphCut/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/GraphCut/graph.h -------------------------------------------------------------------------------- /AppFrame/GraphCut/maxflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/GraphCut/maxflow.cpp -------------------------------------------------------------------------------- /AppFrame/Json/AUTHORS: -------------------------------------------------------------------------------- 1 | Baptiste Lepilleur 2 | -------------------------------------------------------------------------------- /AppFrame/Json/LICENSE: -------------------------------------------------------------------------------- 1 | The json-cpp library and this documentation are in Public Domain. 2 | -------------------------------------------------------------------------------- /AppFrame/Json/SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/SConstruct -------------------------------------------------------------------------------- /AppFrame/Json/doxybuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/doxybuild.py -------------------------------------------------------------------------------- /AppFrame/Json/include/json/autolink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/include/json/autolink.h -------------------------------------------------------------------------------- /AppFrame/Json/include/json/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/include/json/config.h -------------------------------------------------------------------------------- /AppFrame/Json/include/json/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/include/json/features.h -------------------------------------------------------------------------------- /AppFrame/Json/include/json/forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/include/json/forwards.h -------------------------------------------------------------------------------- /AppFrame/Json/include/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/include/json/json.h -------------------------------------------------------------------------------- /AppFrame/Json/include/json/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/include/json/reader.h -------------------------------------------------------------------------------- /AppFrame/Json/include/json/value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/include/json/value.h -------------------------------------------------------------------------------- /AppFrame/Json/include/json/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/include/json/writer.h -------------------------------------------------------------------------------- /AppFrame/Json/lib/LibJson.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/lib/LibJson.lib -------------------------------------------------------------------------------- /AppFrame/Json/lib/LibJson_d.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/lib/LibJson_d.lib -------------------------------------------------------------------------------- /AppFrame/Json/makerelease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/Json/makerelease.py -------------------------------------------------------------------------------- /AppFrame/Json/version: -------------------------------------------------------------------------------- 1 | 0.5.0 -------------------------------------------------------------------------------- /AppFrame/QREncode/bitstream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/bitstream.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/bitstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/bitstream.h -------------------------------------------------------------------------------- /AppFrame/QREncode/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/config.h -------------------------------------------------------------------------------- /AppFrame/QREncode/mask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/mask.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/mask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/mask.h -------------------------------------------------------------------------------- /AppFrame/QREncode/mmask.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/mmask.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/mmask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/mmask.h -------------------------------------------------------------------------------- /AppFrame/QREncode/mqrspec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/mqrspec.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/mqrspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/mqrspec.h -------------------------------------------------------------------------------- /AppFrame/QREncode/qrBitData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrBitData.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/qrBitData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrBitData.h -------------------------------------------------------------------------------- /AppFrame/QREncode/qrFlag.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrFlag.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/qrFlag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrFlag.h -------------------------------------------------------------------------------- /AppFrame/QREncode/qrencode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrencode.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/qrencode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrencode.h -------------------------------------------------------------------------------- /AppFrame/QREncode/qrencode_inner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrencode_inner.h -------------------------------------------------------------------------------- /AppFrame/QREncode/qrinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrinput.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/qrinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrinput.h -------------------------------------------------------------------------------- /AppFrame/QREncode/qrspec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrspec.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/qrspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/qrspec.h -------------------------------------------------------------------------------- /AppFrame/QREncode/rscode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/rscode.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/rscode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/rscode.h -------------------------------------------------------------------------------- /AppFrame/QREncode/split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/split.cpp -------------------------------------------------------------------------------- /AppFrame/QREncode/split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QREncode/split.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/HSSGLFrameBufferObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/HSSGLFrameBufferObject.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/HSSGLFrameBufferObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/HSSGLFrameBufferObject.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/HSSSplineSample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/HSSSplineSample.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/HSSVec2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/HSSVec2.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/HSSVec2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/HSSVec2.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/HSplineCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/HSplineCore.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/HSplinePath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/HSplinePath.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/HSplinePath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/HSplinePath.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/JsonApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/JsonApp.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/JsonApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/JsonApp.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRCharFBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRCharFBO.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRCharFBO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRCharFBO.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRCharacter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRCharacter.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRCharacter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRCharacter.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRCharacterIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRCharacterIO.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRCharacterIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRCharacterIO.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRNode.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRNode.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRPattern.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRPattern.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRPattern.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRPatternFBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRPatternFBO.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRPatternFBO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRPatternFBO.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRSkeleton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRSkeleton.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRSkeleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRSkeleton.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRSplineFBO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRSplineFBO.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRSplineFBO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRSplineFBO.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRStringLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRStringLine.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRStringLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRStringLine.h -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRWordArtIO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRWordArtIO.cpp -------------------------------------------------------------------------------- /AppFrame/QRWordArt/QRWordArtIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/QRWordArt/QRWordArtIO.h -------------------------------------------------------------------------------- /AppFrame/WordArtRender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/WordArtRender.cpp -------------------------------------------------------------------------------- /AppFrame/WordArtRender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/WordArtRender.h -------------------------------------------------------------------------------- /AppFrame/YJPSNRSSIM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/YJPSNRSSIM.cpp -------------------------------------------------------------------------------- /AppFrame/YJPSNRSSIM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/YJPSNRSSIM.h -------------------------------------------------------------------------------- /AppFrame/ZBar/qrdetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZBar/qrdetector.h -------------------------------------------------------------------------------- /AppFrame/ZBar/zBar.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZBar/zBar.lib -------------------------------------------------------------------------------- /AppFrame/ZXing/ImageSource.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/ImageSource.cpp -------------------------------------------------------------------------------- /AppFrame/ZXing/ImageSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/ImageSource.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/win32/zxing/iconv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/win32/zxing/iconv.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/win32/zxing/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/win32/zxing/stdint.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/win32/zxing/win_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/win32/zxing/win_iconv.c -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/BarcodeFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/BarcodeFormat.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/Binarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/Binarizer.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/BinaryBitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/BinaryBitmap.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/ChecksumException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/ChecksumException.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/DecodeHints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/DecodeHints.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/Exception.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/FormatException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/FormatException.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/IllegalStateException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/IllegalStateException.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/InvertedLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/InvertedLuminanceSource.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/LuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/LuminanceSource.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/MultiFormatReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/MultiFormatReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/NotFoundException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/NotFoundException.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/Reader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/ReaderException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/ReaderException.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/Result.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/ResultPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/ResultPoint.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/ResultPointCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/ResultPointCallback.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/ZXing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/ZXing.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/aztec/AztecDetectorResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/aztec/AztecDetectorResult.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/aztec/AztecReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/aztec/AztecReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/aztec/decoder/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/aztec/decoder/Decoder.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/aztec/detector/Detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/aztec/detector/Detector.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/Array.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/BitArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/BitArray.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/BitMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/BitMatrix.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/BitSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/BitSource.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/CharacterSetECI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/CharacterSetECI.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/Counted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/Counted.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/DecoderResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/DecoderResult.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/DetectorResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/DetectorResult.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/GlobalHistogramBinarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/GlobalHistogramBinarizer.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/GreyscaleLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/GreyscaleLuminanceSource.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/GreyscaleRotatedLuminanceSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/GreyscaleRotatedLuminanceSource.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/GridSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/GridSampler.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/HybridBinarizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/HybridBinarizer.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/IllegalArgumentException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/IllegalArgumentException.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/PerspectiveTransform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/PerspectiveTransform.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/Point.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/Point.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/Str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/Str.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/StringUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/StringUtils.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/detector/JavaMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/detector/JavaMath.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/detector/MathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/detector/MathUtils.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/detector/MonochromeRectangleDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/detector/MonochromeRectangleDetector.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/detector/WhiteRectangleDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/detector/WhiteRectangleDetector.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/reedsolomon/GenericGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/reedsolomon/GenericGF.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/reedsolomon/GenericGFPoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/reedsolomon/GenericGFPoly.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/reedsolomon/ReedSolomonDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/reedsolomon/ReedSolomonDecoder.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/common/reedsolomon/ReedSolomonException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/common/reedsolomon/ReedSolomonException.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/datamatrix/DataMatrixReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/datamatrix/DataMatrixReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/datamatrix/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/datamatrix/Version.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/datamatrix/decoder/BitMatrixParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/datamatrix/decoder/BitMatrixParser.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/datamatrix/decoder/DataBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/datamatrix/decoder/DataBlock.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/datamatrix/decoder/DecodedBitStreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/datamatrix/decoder/DecodedBitStreamParser.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/datamatrix/decoder/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/datamatrix/decoder/Decoder.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/datamatrix/detector/CornerPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/datamatrix/detector/CornerPoint.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/datamatrix/detector/Detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/datamatrix/detector/Detector.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/datamatrix/detector/DetectorException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/datamatrix/detector/DetectorException.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/multi/ByQuadrantReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/multi/ByQuadrantReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/multi/GenericMultipleBarcodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/multi/GenericMultipleBarcodeReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/multi/MultipleBarcodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/multi/MultipleBarcodeReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/multi/qrcode/QRCodeMultiReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/multi/qrcode/QRCodeMultiReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/multi/qrcode/detector/MultiDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/multi/qrcode/detector/MultiDetector.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/multi/qrcode/detector/MultiFinderPatternFinder.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/CodaBarReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/CodaBarReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/Code128Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/Code128Reader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/Code39Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/Code39Reader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/Code93Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/Code93Reader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/EAN13Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/EAN13Reader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/EAN8Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/EAN8Reader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/ITFReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/ITFReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/MultiFormatOneDReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/MultiFormatOneDReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/MultiFormatUPCEANReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/MultiFormatUPCEANReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/OneDReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/OneDReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/OneDResultPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/OneDResultPoint.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/UPCAReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/UPCAReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/UPCEANReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/UPCEANReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/oned/UPCEReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/oned/UPCEReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/pdf417/PDF417Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/pdf417/PDF417Reader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/pdf417/decoder/BitMatrixParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/pdf417/decoder/BitMatrixParser.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/pdf417/decoder/DecodedBitStreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/pdf417/decoder/DecodedBitStreamParser.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/pdf417/decoder/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/pdf417/decoder/Decoder.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/pdf417/decoder/ec/ErrorCorrection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/pdf417/decoder/ec/ErrorCorrection.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/pdf417/decoder/ec/ModulusGF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/pdf417/decoder/ec/ModulusGF.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/pdf417/decoder/ec/ModulusPoly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/pdf417/decoder/ec/ModulusPoly.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/pdf417/detector/Detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/pdf417/detector/Detector.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/pdf417/detector/LinesSampler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/pdf417/detector/LinesSampler.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/ErrorCorrectionLevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/ErrorCorrectionLevel.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/FormatInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/FormatInformation.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/QRCodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/QRCodeReader.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/Version.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/decoder/BitMatrixParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/decoder/BitMatrixParser.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/decoder/DataBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/decoder/DataBlock.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/decoder/DataMask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/decoder/DataMask.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/decoder/DecodedBitStreamParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/decoder/DecodedBitStreamParser.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/decoder/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/decoder/Decoder.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/decoder/Mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/decoder/Mode.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/detector/AlignmentPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/detector/AlignmentPattern.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/detector/AlignmentPatternFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/detector/AlignmentPatternFinder.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/detector/Detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/detector/Detector.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/detector/FinderPattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/detector/FinderPattern.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/detector/FinderPatternFinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/detector/FinderPatternFinder.h -------------------------------------------------------------------------------- /AppFrame/ZXing/include/zxing/qrcode/detector/FinderPatternInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/include/zxing/qrcode/detector/FinderPatternInfo.h -------------------------------------------------------------------------------- /AppFrame/ZXing/lib/-libzxing.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/lib/-libzxing.lib -------------------------------------------------------------------------------- /AppFrame/ZXing/lib/libzxing.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/lib/libzxing.lib -------------------------------------------------------------------------------- /AppFrame/ZXing/lib/libzxingd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/ZXing/lib/libzxingd.lib -------------------------------------------------------------------------------- /AppFrame/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/app.ico -------------------------------------------------------------------------------- /AppFrame/app.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/app.rc -------------------------------------------------------------------------------- /AppFrame/flowabs/include/GLee.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/flowabs/include/GLee.h -------------------------------------------------------------------------------- /AppFrame/flowabs/include/flowabs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/flowabs/include/flowabs.h -------------------------------------------------------------------------------- /AppFrame/flowabs/include/flowabsLIB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/flowabs/include/flowabsLIB.h -------------------------------------------------------------------------------- /AppFrame/flowabs/include/flowabsParam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/flowabs/include/flowabsParam.h -------------------------------------------------------------------------------- /AppFrame/flowabs/include/flowabsProp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/flowabs/include/flowabsProp.h -------------------------------------------------------------------------------- /AppFrame/flowabs/include/glsl_program.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/flowabs/include/glsl_program.h -------------------------------------------------------------------------------- /AppFrame/flowabs/include/texture_2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/flowabs/include/texture_2d.h -------------------------------------------------------------------------------- /AppFrame/flowabs/lib/flowabs.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/flowabs/lib/flowabs.lib -------------------------------------------------------------------------------- /AppFrame/flowabs/lib/flowabsd.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/flowabs/lib/flowabsd.lib -------------------------------------------------------------------------------- /AppFrame/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/resource.h -------------------------------------------------------------------------------- /AppFrame/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/stdafx.cpp -------------------------------------------------------------------------------- /AppFrame/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/AppFrame/stdafx.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DiscreteKat/MicrographyQRCodes/HEAD/README.md --------------------------------------------------------------------------------