├── .gitattributes ├── .gitignore ├── DefectDetection ├── MachineVision.DefectDetection.csproj ├── VariationModel.cs ├── View │ ├── VariationView.xaml │ └── VariationView.xaml.cs └── ViewModel │ └── VariationViewModel.cs ├── HalconToolBox.sln ├── HalconToolBox ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── HalconToolBox.csproj ├── Models │ └── NavigationItem.cs ├── Services │ ├── INavigationMenuService.cs │ └── NavigationMenuService.cs ├── ViewModels │ ├── DashBoardViewModel.cs │ ├── MainViewModel.cs │ └── StudyFileViewModel.cs ├── Views │ ├── DashBoardView.xaml │ ├── DashBoardView.xaml.cs │ ├── MainView.xaml │ ├── MainView.xaml.cs │ ├── StudyFile.xaml │ └── StudyFile.xaml.cs └── halcondotnet.dll ├── MachineVision.Core ├── DefectDetection │ └── VariationService.cs ├── DialogViewModel.cs ├── Extensions │ ├── HTuplesExtensions.cs │ ├── HWindowExtensions.cs │ └── SetTimeHepler.cs ├── MachineVision.Core.csproj ├── NavigationViewModel.cs ├── ObjectMeasure │ ├── CircleMeasureService.cs │ ├── ColorDetectionService.cs │ └── SobelAmpService.cs └── TemplateMatch │ ├── DeformableModel │ └── DeformableModelService.cs │ ├── ITemplateMatchService.cs │ ├── NccModel │ └── NccModelService.cs │ ├── OCR │ ├── BarCodeService.cs │ ├── CharRecognitionService.cs │ ├── OcrMatchResult.cs │ └── QRCodeService.cs │ ├── ShapeModel │ └── ShapeModelService.cs │ ├── Shared │ ├── BaseParameter.cs │ ├── MatchResult.cs │ ├── MethodInfo.cs │ ├── ROIParameter.cs │ └── TemplateMatchResult.cs │ └── TemplateMatchType.cs ├── MachineVision.ObjectMeasure ├── MachineVision.ObjectMeasure.csproj ├── ObjectMeasureModule.cs ├── View │ ├── CircleMeasureView.xaml │ ├── CircleMeasureView.xaml.cs │ ├── ColorDetectionView.xaml │ ├── ColorDetectionView.xaml.cs │ ├── SobelAmpView.xaml │ └── SobelAmpView.xaml.cs └── ViewModel │ ├── CircleMeasureViewModel.cs │ ├── ColorDetectionViewModel.cs │ └── SobelAmpViewModel.cs ├── MachineVision.Shared ├── Controls │ ├── DrawingObjectInfo.cs │ ├── ImageEditView.cs │ └── ImageEditView.xaml ├── MachineVision.Shared.csproj └── Themes │ ├── FontColor.xaml │ └── Generic.xaml ├── MachineVision.TemplateMatch ├── MachineVision.TemplateMatch.csproj ├── TemplateMatchModel.cs ├── ViewModels │ ├── BarCodeViewModel.cs │ ├── CharRecognitionViewModel.cs │ ├── DeformableShapeViewModel.cs │ ├── DrawShapeViewModel.cs │ ├── NccViewModel.cs │ ├── QRCodeViewModel.cs │ └── ShapeViewModel.cs └── Views │ ├── BarCodeView.xaml │ ├── BarCodeView.xaml.cs │ ├── CharRecognitionView.xaml │ ├── CharRecognitionView.xaml.cs │ ├── DeformableShapeView.xaml │ ├── DeformableShapeView.xaml.cs │ ├── DrawShapeView.xaml │ ├── DrawShapeView.xaml.cs │ ├── NccView.xaml │ ├── NccView.xaml.cs │ ├── QRCodeView.xaml │ ├── QRCodeView.xaml.cs │ ├── ShapeView.xaml │ └── ShapeView.xaml.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/.gitignore -------------------------------------------------------------------------------- /DefectDetection/MachineVision.DefectDetection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/DefectDetection/MachineVision.DefectDetection.csproj -------------------------------------------------------------------------------- /DefectDetection/VariationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/DefectDetection/VariationModel.cs -------------------------------------------------------------------------------- /DefectDetection/View/VariationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/DefectDetection/View/VariationView.xaml -------------------------------------------------------------------------------- /DefectDetection/View/VariationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/DefectDetection/View/VariationView.xaml.cs -------------------------------------------------------------------------------- /DefectDetection/ViewModel/VariationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/DefectDetection/ViewModel/VariationViewModel.cs -------------------------------------------------------------------------------- /HalconToolBox.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox.sln -------------------------------------------------------------------------------- /HalconToolBox/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/App.xaml -------------------------------------------------------------------------------- /HalconToolBox/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/App.xaml.cs -------------------------------------------------------------------------------- /HalconToolBox/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/AssemblyInfo.cs -------------------------------------------------------------------------------- /HalconToolBox/HalconToolBox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/HalconToolBox.csproj -------------------------------------------------------------------------------- /HalconToolBox/Models/NavigationItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/Models/NavigationItem.cs -------------------------------------------------------------------------------- /HalconToolBox/Services/INavigationMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/Services/INavigationMenuService.cs -------------------------------------------------------------------------------- /HalconToolBox/Services/NavigationMenuService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/Services/NavigationMenuService.cs -------------------------------------------------------------------------------- /HalconToolBox/ViewModels/DashBoardViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/ViewModels/DashBoardViewModel.cs -------------------------------------------------------------------------------- /HalconToolBox/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /HalconToolBox/ViewModels/StudyFileViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/ViewModels/StudyFileViewModel.cs -------------------------------------------------------------------------------- /HalconToolBox/Views/DashBoardView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/Views/DashBoardView.xaml -------------------------------------------------------------------------------- /HalconToolBox/Views/DashBoardView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/Views/DashBoardView.xaml.cs -------------------------------------------------------------------------------- /HalconToolBox/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/Views/MainView.xaml -------------------------------------------------------------------------------- /HalconToolBox/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /HalconToolBox/Views/StudyFile.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/Views/StudyFile.xaml -------------------------------------------------------------------------------- /HalconToolBox/Views/StudyFile.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/Views/StudyFile.xaml.cs -------------------------------------------------------------------------------- /HalconToolBox/halcondotnet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/HalconToolBox/halcondotnet.dll -------------------------------------------------------------------------------- /MachineVision.Core/DefectDetection/VariationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/DefectDetection/VariationService.cs -------------------------------------------------------------------------------- /MachineVision.Core/DialogViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/DialogViewModel.cs -------------------------------------------------------------------------------- /MachineVision.Core/Extensions/HTuplesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/Extensions/HTuplesExtensions.cs -------------------------------------------------------------------------------- /MachineVision.Core/Extensions/HWindowExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/Extensions/HWindowExtensions.cs -------------------------------------------------------------------------------- /MachineVision.Core/Extensions/SetTimeHepler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/Extensions/SetTimeHepler.cs -------------------------------------------------------------------------------- /MachineVision.Core/MachineVision.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/MachineVision.Core.csproj -------------------------------------------------------------------------------- /MachineVision.Core/NavigationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/NavigationViewModel.cs -------------------------------------------------------------------------------- /MachineVision.Core/ObjectMeasure/CircleMeasureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/ObjectMeasure/CircleMeasureService.cs -------------------------------------------------------------------------------- /MachineVision.Core/ObjectMeasure/ColorDetectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/ObjectMeasure/ColorDetectionService.cs -------------------------------------------------------------------------------- /MachineVision.Core/ObjectMeasure/SobelAmpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/ObjectMeasure/SobelAmpService.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/DeformableModel/DeformableModelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/DeformableModel/DeformableModelService.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/ITemplateMatchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/ITemplateMatchService.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/NccModel/NccModelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/NccModel/NccModelService.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/OCR/BarCodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/OCR/BarCodeService.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/OCR/CharRecognitionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/OCR/CharRecognitionService.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/OCR/OcrMatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/OCR/OcrMatchResult.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/OCR/QRCodeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/OCR/QRCodeService.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/ShapeModel/ShapeModelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/ShapeModel/ShapeModelService.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/Shared/BaseParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/Shared/BaseParameter.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/Shared/MatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/Shared/MatchResult.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/Shared/MethodInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/Shared/MethodInfo.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/Shared/ROIParameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/Shared/ROIParameter.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/Shared/TemplateMatchResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/Shared/TemplateMatchResult.cs -------------------------------------------------------------------------------- /MachineVision.Core/TemplateMatch/TemplateMatchType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Core/TemplateMatch/TemplateMatchType.cs -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/MachineVision.ObjectMeasure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/MachineVision.ObjectMeasure.csproj -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/ObjectMeasureModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/ObjectMeasureModule.cs -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/View/CircleMeasureView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/View/CircleMeasureView.xaml -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/View/CircleMeasureView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/View/CircleMeasureView.xaml.cs -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/View/ColorDetectionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/View/ColorDetectionView.xaml -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/View/ColorDetectionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/View/ColorDetectionView.xaml.cs -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/View/SobelAmpView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/View/SobelAmpView.xaml -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/View/SobelAmpView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/View/SobelAmpView.xaml.cs -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/ViewModel/CircleMeasureViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/ViewModel/CircleMeasureViewModel.cs -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/ViewModel/ColorDetectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/ViewModel/ColorDetectionViewModel.cs -------------------------------------------------------------------------------- /MachineVision.ObjectMeasure/ViewModel/SobelAmpViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.ObjectMeasure/ViewModel/SobelAmpViewModel.cs -------------------------------------------------------------------------------- /MachineVision.Shared/Controls/DrawingObjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Shared/Controls/DrawingObjectInfo.cs -------------------------------------------------------------------------------- /MachineVision.Shared/Controls/ImageEditView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Shared/Controls/ImageEditView.cs -------------------------------------------------------------------------------- /MachineVision.Shared/Controls/ImageEditView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Shared/Controls/ImageEditView.xaml -------------------------------------------------------------------------------- /MachineVision.Shared/MachineVision.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Shared/MachineVision.Shared.csproj -------------------------------------------------------------------------------- /MachineVision.Shared/Themes/FontColor.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Shared/Themes/FontColor.xaml -------------------------------------------------------------------------------- /MachineVision.Shared/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.Shared/Themes/Generic.xaml -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/MachineVision.TemplateMatch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/MachineVision.TemplateMatch.csproj -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/TemplateMatchModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/TemplateMatchModel.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/ViewModels/BarCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/ViewModels/BarCodeViewModel.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/ViewModels/CharRecognitionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/ViewModels/CharRecognitionViewModel.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/ViewModels/DeformableShapeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/ViewModels/DeformableShapeViewModel.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/ViewModels/DrawShapeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/ViewModels/DrawShapeViewModel.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/ViewModels/NccViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/ViewModels/NccViewModel.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/ViewModels/QRCodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/ViewModels/QRCodeViewModel.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/ViewModels/ShapeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/ViewModels/ShapeViewModel.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/BarCodeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/BarCodeView.xaml -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/BarCodeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/BarCodeView.xaml.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/CharRecognitionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/CharRecognitionView.xaml -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/CharRecognitionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/CharRecognitionView.xaml.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/DeformableShapeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/DeformableShapeView.xaml -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/DeformableShapeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/DeformableShapeView.xaml.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/DrawShapeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/DrawShapeView.xaml -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/DrawShapeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/DrawShapeView.xaml.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/NccView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/NccView.xaml -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/NccView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/NccView.xaml.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/QRCodeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/QRCodeView.xaml -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/QRCodeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/QRCodeView.xaml.cs -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/ShapeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/ShapeView.xaml -------------------------------------------------------------------------------- /MachineVision.TemplateMatch/Views/ShapeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/MachineVision.TemplateMatch/Views/ShapeView.xaml.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLKI/HalconToolBox/HEAD/README.md --------------------------------------------------------------------------------