├── .gitignore ├── LICENSE ├── README.md ├── SharpCV.sln ├── data ├── 3x5.jpg ├── SmoothImage.jpg ├── UncorrectedImage.png ├── invoice.jpg ├── light.jpg ├── mnist_image_5.npy ├── mnist_image_5.txt ├── road.mp4 └── solar.jpg ├── docs └── README.md ├── src ├── SharpCV.Examples │ ├── Program.cs │ └── SharpCV.Examples.csproj └── SharpCV │ ├── APIs │ ├── cv2.core.cs │ ├── cv2.dnn.cs │ ├── cv2.highgui.cs │ ├── cv2.imgcodecs.cs │ ├── cv2.imgproc.cs │ ├── cv2.photo.cs │ └── cv2.videoio.cs │ ├── Binding.cs │ ├── Core │ ├── Mat.Creation.cs │ ├── Mat.Implicit.cs │ ├── Mat.Index.cs │ ├── Mat.cs │ └── MatType.cs │ ├── DisposableObject.cs │ ├── Modules │ ├── Dnn │ │ ├── Dnn.cs │ │ └── Net.cs │ ├── ImgProc │ │ ├── Moments.Struct.cs │ │ └── Moments.cs │ └── Video │ │ └── VideoCapture.cs │ ├── NativeAPIs │ ├── cv2_native_api.core.cs │ ├── cv2_native_api.cs │ ├── cv2_native_api.dnn.cs │ ├── cv2_native_api.highgui.cs │ ├── cv2_native_api.imgcodecs.cs │ ├── cv2_native_api.imgproc.cs │ ├── cv2_native_api.photo.cs │ ├── cv2_native_api.stdvector.cs │ ├── cv2_native_api.videoio.cs │ └── enum │ │ ├── cv2_native_api.AdaptiveThresholdTypes.cs │ │ ├── cv2_native_api.BorderTypes.cs │ │ ├── cv2_native_api.ColorConversionCodes.cs │ │ ├── cv2_native_api.ContourApproximationModes.cs │ │ ├── cv2_native_api.FLIP_MODE.cs │ │ ├── cv2_native_api.HersheyFonts.cs │ │ ├── cv2_native_api.IMREAD_COLOR.cs │ │ ├── cv2_native_api.InterpolationFlags.cs │ │ ├── cv2_native_api.LineTypes.cs │ │ ├── cv2_native_api.MorphShapes.cs │ │ ├── cv2_native_api.MorphTypes.cs │ │ ├── cv2_native_api.RetrievalModes.cs │ │ ├── cv2_native_api.RotateFlags.cs │ │ ├── cv2_native_api.ThresholdTypes.cs │ │ ├── cv2_native_api.VideoCaptureAPIs.cs │ │ ├── cv2_native_api.VideoCaptureProperties.cs │ │ └── cv2_native_api.WindowFlags.cs │ ├── SharpCV.csproj │ ├── Structs │ ├── Point.cs │ ├── Point2f.cs │ ├── Rect.cs │ ├── RotatedRect.cs │ ├── Scalar.cs │ ├── Size.cs │ └── Size2f.cs │ ├── Util │ └── ArrayAddress2.cs │ └── Vectors │ ├── IStdVector.cs │ ├── VectorOfByte.cs │ ├── VectorOfMat.cs │ └── VectorOfVectorPoint.cs └── test └── UnitTest ├── CoreTest.cs ├── CorrectImageTest.cs ├── CreationTest.cs ├── ImgCodecsTest.cs ├── ImgHighGuiTest.cs ├── ImgProcTest.cs ├── OCRImageEnhance.cs ├── Test.cs ├── UnitTest.csproj ├── VideoTest.cs └── data └── mnist_first_image_data.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/README.md -------------------------------------------------------------------------------- /SharpCV.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/SharpCV.sln -------------------------------------------------------------------------------- /data/3x5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/data/3x5.jpg -------------------------------------------------------------------------------- /data/SmoothImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/data/SmoothImage.jpg -------------------------------------------------------------------------------- /data/UncorrectedImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/data/UncorrectedImage.png -------------------------------------------------------------------------------- /data/invoice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/data/invoice.jpg -------------------------------------------------------------------------------- /data/light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/data/light.jpg -------------------------------------------------------------------------------- /data/mnist_image_5.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/data/mnist_image_5.npy -------------------------------------------------------------------------------- /data/mnist_image_5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/data/mnist_image_5.txt -------------------------------------------------------------------------------- /data/road.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/data/road.mp4 -------------------------------------------------------------------------------- /data/solar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/data/solar.jpg -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/SharpCV.Examples/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV.Examples/Program.cs -------------------------------------------------------------------------------- /src/SharpCV.Examples/SharpCV.Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV.Examples/SharpCV.Examples.csproj -------------------------------------------------------------------------------- /src/SharpCV/APIs/cv2.core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/APIs/cv2.core.cs -------------------------------------------------------------------------------- /src/SharpCV/APIs/cv2.dnn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/APIs/cv2.dnn.cs -------------------------------------------------------------------------------- /src/SharpCV/APIs/cv2.highgui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/APIs/cv2.highgui.cs -------------------------------------------------------------------------------- /src/SharpCV/APIs/cv2.imgcodecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/APIs/cv2.imgcodecs.cs -------------------------------------------------------------------------------- /src/SharpCV/APIs/cv2.imgproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/APIs/cv2.imgproc.cs -------------------------------------------------------------------------------- /src/SharpCV/APIs/cv2.photo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/APIs/cv2.photo.cs -------------------------------------------------------------------------------- /src/SharpCV/APIs/cv2.videoio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/APIs/cv2.videoio.cs -------------------------------------------------------------------------------- /src/SharpCV/Binding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Binding.cs -------------------------------------------------------------------------------- /src/SharpCV/Core/Mat.Creation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Core/Mat.Creation.cs -------------------------------------------------------------------------------- /src/SharpCV/Core/Mat.Implicit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Core/Mat.Implicit.cs -------------------------------------------------------------------------------- /src/SharpCV/Core/Mat.Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Core/Mat.Index.cs -------------------------------------------------------------------------------- /src/SharpCV/Core/Mat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Core/Mat.cs -------------------------------------------------------------------------------- /src/SharpCV/Core/MatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Core/MatType.cs -------------------------------------------------------------------------------- /src/SharpCV/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/DisposableObject.cs -------------------------------------------------------------------------------- /src/SharpCV/Modules/Dnn/Dnn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Modules/Dnn/Dnn.cs -------------------------------------------------------------------------------- /src/SharpCV/Modules/Dnn/Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Modules/Dnn/Net.cs -------------------------------------------------------------------------------- /src/SharpCV/Modules/ImgProc/Moments.Struct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Modules/ImgProc/Moments.Struct.cs -------------------------------------------------------------------------------- /src/SharpCV/Modules/ImgProc/Moments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Modules/ImgProc/Moments.cs -------------------------------------------------------------------------------- /src/SharpCV/Modules/Video/VideoCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Modules/Video/VideoCapture.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/cv2_native_api.core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/cv2_native_api.core.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/cv2_native_api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/cv2_native_api.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/cv2_native_api.dnn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/cv2_native_api.dnn.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/cv2_native_api.highgui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/cv2_native_api.highgui.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/cv2_native_api.imgcodecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/cv2_native_api.imgcodecs.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/cv2_native_api.imgproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/cv2_native_api.imgproc.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/cv2_native_api.photo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/cv2_native_api.photo.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/cv2_native_api.stdvector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/cv2_native_api.stdvector.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/cv2_native_api.videoio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/cv2_native_api.videoio.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.AdaptiveThresholdTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.AdaptiveThresholdTypes.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.BorderTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.BorderTypes.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.ColorConversionCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.ColorConversionCodes.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.ContourApproximationModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.ContourApproximationModes.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.FLIP_MODE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.FLIP_MODE.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.HersheyFonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.HersheyFonts.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.IMREAD_COLOR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.IMREAD_COLOR.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.InterpolationFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.InterpolationFlags.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.LineTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.LineTypes.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.MorphShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.MorphShapes.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.MorphTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.MorphTypes.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.RetrievalModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.RetrievalModes.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.RotateFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.RotateFlags.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.ThresholdTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.ThresholdTypes.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.VideoCaptureAPIs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.VideoCaptureAPIs.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.VideoCaptureProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.VideoCaptureProperties.cs -------------------------------------------------------------------------------- /src/SharpCV/NativeAPIs/enum/cv2_native_api.WindowFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/NativeAPIs/enum/cv2_native_api.WindowFlags.cs -------------------------------------------------------------------------------- /src/SharpCV/SharpCV.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/SharpCV.csproj -------------------------------------------------------------------------------- /src/SharpCV/Structs/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Structs/Point.cs -------------------------------------------------------------------------------- /src/SharpCV/Structs/Point2f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Structs/Point2f.cs -------------------------------------------------------------------------------- /src/SharpCV/Structs/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Structs/Rect.cs -------------------------------------------------------------------------------- /src/SharpCV/Structs/RotatedRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Structs/RotatedRect.cs -------------------------------------------------------------------------------- /src/SharpCV/Structs/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Structs/Scalar.cs -------------------------------------------------------------------------------- /src/SharpCV/Structs/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Structs/Size.cs -------------------------------------------------------------------------------- /src/SharpCV/Structs/Size2f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Structs/Size2f.cs -------------------------------------------------------------------------------- /src/SharpCV/Util/ArrayAddress2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Util/ArrayAddress2.cs -------------------------------------------------------------------------------- /src/SharpCV/Vectors/IStdVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Vectors/IStdVector.cs -------------------------------------------------------------------------------- /src/SharpCV/Vectors/VectorOfByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Vectors/VectorOfByte.cs -------------------------------------------------------------------------------- /src/SharpCV/Vectors/VectorOfMat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Vectors/VectorOfMat.cs -------------------------------------------------------------------------------- /src/SharpCV/Vectors/VectorOfVectorPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/src/SharpCV/Vectors/VectorOfVectorPoint.cs -------------------------------------------------------------------------------- /test/UnitTest/CoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/CoreTest.cs -------------------------------------------------------------------------------- /test/UnitTest/CorrectImageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/CorrectImageTest.cs -------------------------------------------------------------------------------- /test/UnitTest/CreationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/CreationTest.cs -------------------------------------------------------------------------------- /test/UnitTest/ImgCodecsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/ImgCodecsTest.cs -------------------------------------------------------------------------------- /test/UnitTest/ImgHighGuiTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/ImgHighGuiTest.cs -------------------------------------------------------------------------------- /test/UnitTest/ImgProcTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/ImgProcTest.cs -------------------------------------------------------------------------------- /test/UnitTest/OCRImageEnhance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/OCRImageEnhance.cs -------------------------------------------------------------------------------- /test/UnitTest/Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/Test.cs -------------------------------------------------------------------------------- /test/UnitTest/UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/UnitTest.csproj -------------------------------------------------------------------------------- /test/UnitTest/VideoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/VideoTest.cs -------------------------------------------------------------------------------- /test/UnitTest/data/mnist_first_image_data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SciSharp/SharpCV/HEAD/test/UnitTest/data/mnist_first_image_data.txt --------------------------------------------------------------------------------