├── .gitattributes ├── .gitignore ├── Camera ├── camerabasic.h ├── camerebasic.cpp ├── haikangcamera.cpp └── haikangcamera.h ├── Common ├── Global.cpp ├── Global.h ├── concurrentqueue.h ├── utils.cpp └── utils.h ├── Display ├── ImageDisplay.cpp └── ImageDisplay.h ├── ImageHandle ├── blobimagehandle.cpp ├── blobimagehandle.h ├── hsvimagehandle.cpp ├── hsvimagehandle.h ├── imagehandle.cpp ├── imagehandle.h ├── templatematchimagehandle.cpp └── templatematchimagehandle.h ├── Protocol ├── Protocol.cpp └── Protocol.h ├── README.md ├── Service ├── capturethread.cpp ├── capturethread.h ├── closecamerathread.cpp ├── closecamerathread.h ├── deviceenumthread.cpp ├── deviceenumthread.h ├── imagehandlethread.cpp ├── imagehandlethread.h ├── opencamerathread.cpp └── opencamerathread.h ├── TemplateMatch ├── Interface.cpp ├── Interface.h ├── line2Dup.cpp ├── line2Dup.h ├── math │ ├── avx512_mathfun.h │ ├── avx512_mathfun.hxx │ ├── avx_mathfun.h │ ├── avx_mathfun.hxx │ ├── neon_mathfun.h │ ├── neon_mathfun.hxx │ ├── sse_mathfun.h │ └── sse_mathfun.hxx ├── mipp.h ├── mipp_impl_AVX.hxx ├── mipp_impl_AVX512.hxx ├── mipp_impl_NEON.hxx ├── mipp_impl_SSE.hxx ├── mipp_object.hxx ├── mipp_scalar_op.h └── mipp_scalar_op.hxx ├── Vision.pro ├── main.cpp ├── mainwindow.cpp ├── mainwindow.h └── mainwindow.ui /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/.gitignore -------------------------------------------------------------------------------- /Camera/camerabasic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Camera/camerabasic.h -------------------------------------------------------------------------------- /Camera/camerebasic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Camera/camerebasic.cpp -------------------------------------------------------------------------------- /Camera/haikangcamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Camera/haikangcamera.cpp -------------------------------------------------------------------------------- /Camera/haikangcamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Camera/haikangcamera.h -------------------------------------------------------------------------------- /Common/Global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Common/Global.cpp -------------------------------------------------------------------------------- /Common/Global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Common/Global.h -------------------------------------------------------------------------------- /Common/concurrentqueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Common/concurrentqueue.h -------------------------------------------------------------------------------- /Common/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Common/utils.cpp -------------------------------------------------------------------------------- /Common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Common/utils.h -------------------------------------------------------------------------------- /Display/ImageDisplay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Display/ImageDisplay.cpp -------------------------------------------------------------------------------- /Display/ImageDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Display/ImageDisplay.h -------------------------------------------------------------------------------- /ImageHandle/blobimagehandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/ImageHandle/blobimagehandle.cpp -------------------------------------------------------------------------------- /ImageHandle/blobimagehandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/ImageHandle/blobimagehandle.h -------------------------------------------------------------------------------- /ImageHandle/hsvimagehandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/ImageHandle/hsvimagehandle.cpp -------------------------------------------------------------------------------- /ImageHandle/hsvimagehandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/ImageHandle/hsvimagehandle.h -------------------------------------------------------------------------------- /ImageHandle/imagehandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/ImageHandle/imagehandle.cpp -------------------------------------------------------------------------------- /ImageHandle/imagehandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/ImageHandle/imagehandle.h -------------------------------------------------------------------------------- /ImageHandle/templatematchimagehandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/ImageHandle/templatematchimagehandle.cpp -------------------------------------------------------------------------------- /ImageHandle/templatematchimagehandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/ImageHandle/templatematchimagehandle.h -------------------------------------------------------------------------------- /Protocol/Protocol.cpp: -------------------------------------------------------------------------------- 1 | #include "Protocol.h" 2 | //在下面定义数据传输的协议 3 | -------------------------------------------------------------------------------- /Protocol/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Protocol/Protocol.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/README.md -------------------------------------------------------------------------------- /Service/capturethread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Service/capturethread.cpp -------------------------------------------------------------------------------- /Service/capturethread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Service/capturethread.h -------------------------------------------------------------------------------- /Service/closecamerathread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Service/closecamerathread.cpp -------------------------------------------------------------------------------- /Service/closecamerathread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Service/closecamerathread.h -------------------------------------------------------------------------------- /Service/deviceenumthread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Service/deviceenumthread.cpp -------------------------------------------------------------------------------- /Service/deviceenumthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Service/deviceenumthread.h -------------------------------------------------------------------------------- /Service/imagehandlethread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Service/imagehandlethread.cpp -------------------------------------------------------------------------------- /Service/imagehandlethread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Service/imagehandlethread.h -------------------------------------------------------------------------------- /Service/opencamerathread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Service/opencamerathread.cpp -------------------------------------------------------------------------------- /Service/opencamerathread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Service/opencamerathread.h -------------------------------------------------------------------------------- /TemplateMatch/Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/Interface.cpp -------------------------------------------------------------------------------- /TemplateMatch/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/Interface.h -------------------------------------------------------------------------------- /TemplateMatch/line2Dup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/line2Dup.cpp -------------------------------------------------------------------------------- /TemplateMatch/line2Dup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/line2Dup.h -------------------------------------------------------------------------------- /TemplateMatch/math/avx512_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/math/avx512_mathfun.h -------------------------------------------------------------------------------- /TemplateMatch/math/avx512_mathfun.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/math/avx512_mathfun.hxx -------------------------------------------------------------------------------- /TemplateMatch/math/avx_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/math/avx_mathfun.h -------------------------------------------------------------------------------- /TemplateMatch/math/avx_mathfun.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/math/avx_mathfun.hxx -------------------------------------------------------------------------------- /TemplateMatch/math/neon_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/math/neon_mathfun.h -------------------------------------------------------------------------------- /TemplateMatch/math/neon_mathfun.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/math/neon_mathfun.hxx -------------------------------------------------------------------------------- /TemplateMatch/math/sse_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/math/sse_mathfun.h -------------------------------------------------------------------------------- /TemplateMatch/math/sse_mathfun.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/math/sse_mathfun.hxx -------------------------------------------------------------------------------- /TemplateMatch/mipp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/mipp.h -------------------------------------------------------------------------------- /TemplateMatch/mipp_impl_AVX.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/mipp_impl_AVX.hxx -------------------------------------------------------------------------------- /TemplateMatch/mipp_impl_AVX512.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/mipp_impl_AVX512.hxx -------------------------------------------------------------------------------- /TemplateMatch/mipp_impl_NEON.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/mipp_impl_NEON.hxx -------------------------------------------------------------------------------- /TemplateMatch/mipp_impl_SSE.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/mipp_impl_SSE.hxx -------------------------------------------------------------------------------- /TemplateMatch/mipp_object.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/mipp_object.hxx -------------------------------------------------------------------------------- /TemplateMatch/mipp_scalar_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/mipp_scalar_op.h -------------------------------------------------------------------------------- /TemplateMatch/mipp_scalar_op.hxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/TemplateMatch/mipp_scalar_op.hxx -------------------------------------------------------------------------------- /Vision.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/Vision.pro -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/main.cpp -------------------------------------------------------------------------------- /mainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/mainwindow.cpp -------------------------------------------------------------------------------- /mainwindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/mainwindow.h -------------------------------------------------------------------------------- /mainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangyuou/QVision/HEAD/mainwindow.ui --------------------------------------------------------------------------------