├── .gitattributes ├── .gitignore ├── FlowProjects └── domainReduce.flow ├── NodeEditorPro.sln ├── NodeEditorPro ├── DefaultStyle.json ├── Halcon2105.props ├── NodeEditorPro.vcxproj ├── NodeEditorPro.vcxproj.filters ├── examples │ ├── calculator │ │ ├── AdditionModel.hpp │ │ ├── CMakeLists.txt │ │ ├── Converters.cpp │ │ ├── Converters.hpp │ │ ├── DecimalData.hpp │ │ ├── DivisionModel.hpp │ │ ├── IntegerData.hpp │ │ ├── MathNodes.hpp │ │ ├── MathOperationDataModel.cpp │ │ ├── MathOperationDataModel.hpp │ │ ├── ModuloModel.cpp │ │ ├── ModuloModel.hpp │ │ ├── MultiplicationModel.hpp │ │ ├── NumberDisplayDataModel.cpp │ │ ├── NumberDisplayDataModel.hpp │ │ ├── NumberSourceDataModel.cpp │ │ ├── NumberSourceDataModel.hpp │ │ └── SubtractionModel.hpp │ ├── halcon │ │ ├── HImageDLSegmentModel.cpp │ │ ├── HImageDLSegmentModel.hpp │ │ ├── HImageData.hpp │ │ ├── HImageFolderModel.cpp │ │ ├── HImageFolderModel.hpp │ │ ├── HImageLoaderModel.cpp │ │ ├── HImageLoaderModel.hpp │ │ ├── HImageRGB2GrayModel.cpp │ │ ├── HImageRGB2GrayModel.hpp │ │ ├── HImageReduceDomainModel.cpp │ │ ├── HImageReduceDomainModel.hpp │ │ ├── HImageShowModel.cpp │ │ ├── HImageShowModel.hpp │ │ ├── HImageSplitChanelModel.cpp │ │ ├── HImageSplitChanelModel.hpp │ │ ├── HImageThresholdModel.cpp │ │ ├── HImageThresholdModel.hpp │ │ ├── HImageViewWidget.cpp │ │ ├── HImageViewWidget.hpp │ │ ├── HObjectData.hpp │ │ ├── HRegionConnectModel.cpp │ │ ├── HRegionConnectModel.hpp │ │ ├── HRegionData.hpp │ │ ├── HRegionDifferenceModel.cpp │ │ ├── HRegionDifferenceModel.hpp │ │ ├── HRegionFillUpShapeModel.cpp │ │ ├── HRegionFillUpShapeModel.hpp │ │ ├── HRegionOpenCircleModel.cpp │ │ ├── HRegionOpenCircleModel.hpp │ │ ├── HRegionSelectModel.cpp │ │ ├── HRegionSelectModel.hpp │ │ ├── HRegionSelectShapeStdModel.cpp │ │ ├── HRegionSelectShapeStdModel.hpp │ │ ├── HRegionShapeTransModel.cpp │ │ ├── HRegionShapeTransModel.hpp │ │ ├── HRegionUnionModel.cpp │ │ ├── HRegionUnionModel.hpp │ │ └── HalconNodes.hpp │ └── images │ │ ├── ImageLoaderModel.cpp │ │ ├── ImageLoaderModel.hpp │ │ ├── ImageShowModel.cpp │ │ ├── ImageShowModel.hpp │ │ ├── PixmapData.hpp │ │ ├── VisionFlowWidget.cpp │ │ ├── VisionFlowWidget.hpp │ │ └── main.cpp ├── halcon20.11_x64_cpp.props ├── include │ └── nodes │ │ ├── Compiler.hpp │ │ ├── Connection.hpp │ │ ├── ConnectionGeometry.hpp │ │ ├── ConnectionGraphicsObject.hpp │ │ ├── ConnectionState.hpp │ │ ├── ConnectionStyle.hpp │ │ ├── DataModelRegistry.hpp │ │ ├── Export.hpp │ │ ├── FlowScene.hpp │ │ ├── FlowView.hpp │ │ ├── FlowViewStyle.hpp │ │ ├── Node.hpp │ │ ├── NodeData.hpp │ │ ├── NodeDataModel.hpp │ │ ├── NodeGeometry.hpp │ │ ├── NodeGraphicsObject.hpp │ │ ├── NodePainterDelegate.hpp │ │ ├── NodeState.hpp │ │ ├── NodeStyle.hpp │ │ ├── OperatingSystem.hpp │ │ ├── PortType.hpp │ │ ├── QStringStdHash.hpp │ │ ├── QUuidStdHash.hpp │ │ ├── Serializable.hpp │ │ ├── Style.hpp │ │ ├── StyleCollection.hpp │ │ ├── TypeConverter.hpp │ │ └── memory.hpp ├── resources │ ├── DefaultStyle - 副本.json │ ├── DefaultStyle.json │ ├── convert.png │ ├── logo.png │ └── resources.qrc ├── showcase │ ├── ReduceDomain.gif │ ├── ReduceDomain.mp4 │ ├── draw_shape_view.png │ ├── reduceNode.png │ ├── selectBallTest.png │ ├── selectRegionNode.png │ ├── showcase1.gif │ ├── showcase2.mp4 │ ├── showcase3.gif │ ├── showcase4.gif │ ├── showcase5.png │ └── showcase6.mp4 └── src │ ├── Connection.cpp │ ├── ConnectionBlurEffect.cpp │ ├── ConnectionBlurEffect.hpp │ ├── ConnectionGeometry.cpp │ ├── ConnectionGraphicsObject.cpp │ ├── ConnectionPainter.cpp │ ├── ConnectionPainter.hpp │ ├── ConnectionState.cpp │ ├── ConnectionStyle.cpp │ ├── DataModelRegistry.cpp │ ├── FlowScene.cpp │ ├── FlowView.cpp │ ├── FlowViewStyle.cpp │ ├── Node.cpp │ ├── NodeConnectionInteraction.cpp │ ├── NodeConnectionInteraction.hpp │ ├── NodeDataModel.cpp │ ├── NodeGeometry.cpp │ ├── NodeGraphicsObject.cpp │ ├── NodePainter.cpp │ ├── NodePainter.hpp │ ├── NodeState.cpp │ ├── NodeStyle.cpp │ ├── Properties.cpp │ ├── Properties.hpp │ ├── QDataStreamPhaser.cpp │ ├── QDataStreamPhaser.hpp │ ├── QJsonParser.cpp │ ├── QJsonParser.hpp │ └── StyleCollection.cpp ├── README.md └── ShapeDrawer ├── DrawShapeView.cpp ├── DrawShapeView.hpp ├── DrawViewParams.h ├── ShapeControlItem.cpp ├── ShapeControlItem.h ├── ShapeItemBase.cpp ├── ShapeItemBase.h ├── ShapeItemLine.cpp ├── ShapeItemLine.h ├── ShapeItemPolygon.cpp ├── ShapeItemPolygon.h ├── ShapeItemRect1.cpp ├── ShapeItemRect1.h ├── ShapeItemRect2.cpp └── ShapeItemRect2.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/.gitignore -------------------------------------------------------------------------------- /FlowProjects/domainReduce.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/FlowProjects/domainReduce.flow -------------------------------------------------------------------------------- /NodeEditorPro.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro.sln -------------------------------------------------------------------------------- /NodeEditorPro/DefaultStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/DefaultStyle.json -------------------------------------------------------------------------------- /NodeEditorPro/Halcon2105.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/Halcon2105.props -------------------------------------------------------------------------------- /NodeEditorPro/NodeEditorPro.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/NodeEditorPro.vcxproj -------------------------------------------------------------------------------- /NodeEditorPro/NodeEditorPro.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/NodeEditorPro.vcxproj.filters -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/AdditionModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/AdditionModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/CMakeLists.txt -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/Converters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/Converters.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/Converters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/Converters.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/DecimalData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/DecimalData.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/DivisionModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/DivisionModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/IntegerData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/IntegerData.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/MathNodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/MathNodes.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/MathOperationDataModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/MathOperationDataModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/MathOperationDataModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/MathOperationDataModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/ModuloModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/ModuloModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/ModuloModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/ModuloModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/MultiplicationModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/MultiplicationModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/NumberDisplayDataModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/NumberDisplayDataModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/NumberDisplayDataModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/NumberDisplayDataModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/NumberSourceDataModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/NumberSourceDataModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/NumberSourceDataModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/NumberSourceDataModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/calculator/SubtractionModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/calculator/SubtractionModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageDLSegmentModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageDLSegmentModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageDLSegmentModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageDLSegmentModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageData.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageFolderModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageFolderModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageFolderModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageFolderModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageLoaderModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageLoaderModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageLoaderModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageLoaderModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageRGB2GrayModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageRGB2GrayModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageRGB2GrayModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageRGB2GrayModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageReduceDomainModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageReduceDomainModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageReduceDomainModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageReduceDomainModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageShowModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageShowModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageShowModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageShowModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageSplitChanelModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageSplitChanelModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageSplitChanelModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageSplitChanelModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageThresholdModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageThresholdModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageThresholdModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageThresholdModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageViewWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageViewWidget.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HImageViewWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HImageViewWidget.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HObjectData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HObjectData.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionConnectModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionConnectModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionConnectModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionConnectModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionData.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionDifferenceModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionDifferenceModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionDifferenceModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionDifferenceModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionFillUpShapeModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionFillUpShapeModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionFillUpShapeModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionFillUpShapeModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionOpenCircleModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionOpenCircleModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionOpenCircleModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionOpenCircleModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionSelectModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionSelectModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionSelectModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionSelectModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionSelectShapeStdModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionSelectShapeStdModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionSelectShapeStdModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionSelectShapeStdModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionShapeTransModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionShapeTransModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionShapeTransModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionShapeTransModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionUnionModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionUnionModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HRegionUnionModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HRegionUnionModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/halcon/HalconNodes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/halcon/HalconNodes.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/images/ImageLoaderModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/images/ImageLoaderModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/images/ImageLoaderModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/images/ImageLoaderModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/images/ImageShowModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/images/ImageShowModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/images/ImageShowModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/images/ImageShowModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/images/PixmapData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/images/PixmapData.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/images/VisionFlowWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/images/VisionFlowWidget.cpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/images/VisionFlowWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/images/VisionFlowWidget.hpp -------------------------------------------------------------------------------- /NodeEditorPro/examples/images/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/examples/images/main.cpp -------------------------------------------------------------------------------- /NodeEditorPro/halcon20.11_x64_cpp.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/halcon20.11_x64_cpp.props -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/Compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/Compiler.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/Connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/Connection.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/ConnectionGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/ConnectionGeometry.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/ConnectionGraphicsObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/ConnectionGraphicsObject.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/ConnectionState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/ConnectionState.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/ConnectionStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/ConnectionStyle.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/DataModelRegistry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/DataModelRegistry.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/Export.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/FlowScene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/FlowScene.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/FlowView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/FlowView.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/FlowViewStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/FlowViewStyle.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/Node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/Node.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/NodeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/NodeData.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/NodeDataModel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/NodeDataModel.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/NodeGeometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/NodeGeometry.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/NodeGraphicsObject.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/NodeGraphicsObject.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/NodePainterDelegate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/NodePainterDelegate.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/NodeState.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/NodeState.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/NodeStyle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/NodeStyle.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/OperatingSystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/OperatingSystem.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/PortType.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/PortType.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/QStringStdHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/QStringStdHash.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/QUuidStdHash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/QUuidStdHash.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/Serializable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/Serializable.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/Style.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/Style.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/StyleCollection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/StyleCollection.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/TypeConverter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/TypeConverter.hpp -------------------------------------------------------------------------------- /NodeEditorPro/include/nodes/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/include/nodes/memory.hpp -------------------------------------------------------------------------------- /NodeEditorPro/resources/DefaultStyle - 副本.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/resources/DefaultStyle - 副本.json -------------------------------------------------------------------------------- /NodeEditorPro/resources/DefaultStyle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/resources/DefaultStyle.json -------------------------------------------------------------------------------- /NodeEditorPro/resources/convert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/resources/convert.png -------------------------------------------------------------------------------- /NodeEditorPro/resources/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/resources/logo.png -------------------------------------------------------------------------------- /NodeEditorPro/resources/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/resources/resources.qrc -------------------------------------------------------------------------------- /NodeEditorPro/showcase/ReduceDomain.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/ReduceDomain.gif -------------------------------------------------------------------------------- /NodeEditorPro/showcase/ReduceDomain.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/ReduceDomain.mp4 -------------------------------------------------------------------------------- /NodeEditorPro/showcase/draw_shape_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/draw_shape_view.png -------------------------------------------------------------------------------- /NodeEditorPro/showcase/reduceNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/reduceNode.png -------------------------------------------------------------------------------- /NodeEditorPro/showcase/selectBallTest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/selectBallTest.png -------------------------------------------------------------------------------- /NodeEditorPro/showcase/selectRegionNode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/selectRegionNode.png -------------------------------------------------------------------------------- /NodeEditorPro/showcase/showcase1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/showcase1.gif -------------------------------------------------------------------------------- /NodeEditorPro/showcase/showcase2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/showcase2.mp4 -------------------------------------------------------------------------------- /NodeEditorPro/showcase/showcase3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/showcase3.gif -------------------------------------------------------------------------------- /NodeEditorPro/showcase/showcase4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/showcase4.gif -------------------------------------------------------------------------------- /NodeEditorPro/showcase/showcase5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/showcase5.png -------------------------------------------------------------------------------- /NodeEditorPro/showcase/showcase6.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/showcase/showcase6.mp4 -------------------------------------------------------------------------------- /NodeEditorPro/src/Connection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/Connection.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/ConnectionBlurEffect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/ConnectionBlurEffect.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/ConnectionBlurEffect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/ConnectionBlurEffect.hpp -------------------------------------------------------------------------------- /NodeEditorPro/src/ConnectionGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/ConnectionGeometry.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/ConnectionGraphicsObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/ConnectionGraphicsObject.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/ConnectionPainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/ConnectionPainter.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/ConnectionPainter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/ConnectionPainter.hpp -------------------------------------------------------------------------------- /NodeEditorPro/src/ConnectionState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/ConnectionState.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/ConnectionStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/ConnectionStyle.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/DataModelRegistry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/DataModelRegistry.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/FlowScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/FlowScene.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/FlowView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/FlowView.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/FlowViewStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/FlowViewStyle.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/Node.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/NodeConnectionInteraction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/NodeConnectionInteraction.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/NodeConnectionInteraction.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/NodeConnectionInteraction.hpp -------------------------------------------------------------------------------- /NodeEditorPro/src/NodeDataModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/NodeDataModel.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/NodeGeometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/NodeGeometry.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/NodeGraphicsObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/NodeGraphicsObject.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/NodePainter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/NodePainter.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/NodePainter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/NodePainter.hpp -------------------------------------------------------------------------------- /NodeEditorPro/src/NodeState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/NodeState.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/NodeStyle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/NodeStyle.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/Properties.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/Properties.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/Properties.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/Properties.hpp -------------------------------------------------------------------------------- /NodeEditorPro/src/QDataStreamPhaser.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NodeEditorPro/src/QDataStreamPhaser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/QDataStreamPhaser.hpp -------------------------------------------------------------------------------- /NodeEditorPro/src/QJsonParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/QJsonParser.cpp -------------------------------------------------------------------------------- /NodeEditorPro/src/QJsonParser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/QJsonParser.hpp -------------------------------------------------------------------------------- /NodeEditorPro/src/StyleCollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/NodeEditorPro/src/StyleCollection.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/README.md -------------------------------------------------------------------------------- /ShapeDrawer/DrawShapeView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/DrawShapeView.cpp -------------------------------------------------------------------------------- /ShapeDrawer/DrawShapeView.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/DrawShapeView.hpp -------------------------------------------------------------------------------- /ShapeDrawer/DrawViewParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/DrawViewParams.h -------------------------------------------------------------------------------- /ShapeDrawer/ShapeControlItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeControlItem.cpp -------------------------------------------------------------------------------- /ShapeDrawer/ShapeControlItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeControlItem.h -------------------------------------------------------------------------------- /ShapeDrawer/ShapeItemBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeItemBase.cpp -------------------------------------------------------------------------------- /ShapeDrawer/ShapeItemBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeItemBase.h -------------------------------------------------------------------------------- /ShapeDrawer/ShapeItemLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeItemLine.cpp -------------------------------------------------------------------------------- /ShapeDrawer/ShapeItemLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeItemLine.h -------------------------------------------------------------------------------- /ShapeDrawer/ShapeItemPolygon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeItemPolygon.cpp -------------------------------------------------------------------------------- /ShapeDrawer/ShapeItemPolygon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeItemPolygon.h -------------------------------------------------------------------------------- /ShapeDrawer/ShapeItemRect1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeItemRect1.cpp -------------------------------------------------------------------------------- /ShapeDrawer/ShapeItemRect1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeItemRect1.h -------------------------------------------------------------------------------- /ShapeDrawer/ShapeItemRect2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeItemRect2.cpp -------------------------------------------------------------------------------- /ShapeDrawer/ShapeItemRect2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/susigo/VisionFlowPro/HEAD/ShapeDrawer/ShapeItemRect2.h --------------------------------------------------------------------------------