gitextract_pvk6qki_/ ├── .gitignore ├── Deploy/ │ ├── Licence.txt │ ├── Logo/ │ │ └── DotImaging.pptx │ └── Nuget/ │ └── Push.ps1 ├── Directory.Build.props ├── DotImaging.sln ├── README.md ├── Samples/ │ ├── Sample.Basic/ │ │ ├── Program.cs │ │ └── Sample.Basic.csproj │ ├── Sample.Capture/ │ │ ├── Program.cs │ │ └── Sample.Capture.csproj │ ├── Sample.CaptureAndRecord/ │ │ ├── Program.cs │ │ └── Sample.CaptureAndRecord.csproj │ ├── Sample.ImageExtractor/ │ │ ├── Program.cs │ │ └── Sample.ImageExtractor.csproj │ ├── Sample.Interop/ │ │ ├── Program.cs │ │ └── Sample.Interop.csproj │ ├── Sample.MultipleCameraCapture/ │ │ ├── Program.cs │ │ └── Sample.MultipleCameraCapture.csproj │ ├── Sample.UI/ │ │ ├── Program.cs │ │ └── Sample.UI.csproj │ └── Sample.VideoStreaming/ │ ├── Program.cs │ └── Sample.VideoStreaming.csproj └── Source/ ├── BitmapInterop/ │ ├── .nuSpec/ │ │ └── readmeImage.Bitmap.txt │ ├── BmpExtensions/ │ │ ├── BitmapConversion.cs │ │ ├── BmpIO.cs │ │ └── ColorConversion.cs │ └── Image.BitmapInterop.csproj ├── IO/ │ ├── .nuSpec/ │ │ └── readmeIO.txt │ ├── Base/ │ │ ├── Abstract/ │ │ │ ├── ImageStream.cs │ │ │ ├── ImageStreamReader.cs │ │ │ └── ImageStreamWriter.cs │ │ └── CvInvoke.cs │ ├── IO.csproj │ ├── ImageIO.cs │ ├── Readers/ │ │ ├── CameraCapture.cs │ │ ├── FileCapture.cs │ │ ├── ImageDirectoryCapture.cs │ │ └── VideoCaptureBase.cs │ ├── Utilities/ │ │ ├── NaturalSortComparer.cs │ │ └── PathExtensions.cs │ ├── Writers/ │ │ ├── ImageWriterExtension.cs │ │ └── VideoWriter.cs │ └── runtimes/ │ └── ubuntu.16.04-x64/ │ ├── libopencv_core.so.2.4 │ ├── libopencv_highgui.so.2.4 │ └── libopencv_video.so.2.4 ├── IO.Web/ │ ├── .nuSpec/ │ │ └── readmeIO.Web.txt │ ├── IO.Web.csproj │ ├── NamedPipeExtensions.cs │ └── WebImageExtensions.cs ├── Image/ │ ├── .nuSpec/ │ │ └── readmeImage.txt │ ├── ColorTypeConversions/ │ │ ├── ColorInfo.cs │ │ ├── ColorSpaces/ │ │ │ ├── Bgr.cs │ │ │ ├── Bgra.cs │ │ │ ├── Gray.cs │ │ │ ├── Hsv.cs │ │ │ ├── IColor.cs │ │ │ └── Rgb.cs │ │ └── Converters/ │ │ └── ColorConversionExtensions.cs │ ├── Extensions/ │ │ ├── BasicExtensions.cs │ │ ├── ChannelMerger.cs │ │ ├── ChannelSplitter.cs │ │ ├── Convert.cs │ │ ├── Copy.cs │ │ ├── ImageFlipping.cs │ │ └── SpatialConvolution.cs │ ├── Image.csproj │ ├── Interop/ │ │ ├── CvMat.cs │ │ └── IplImage.cs │ ├── Linq/ │ │ └── ImagingLinq.cs │ ├── ParallelLauncher.cs │ ├── Slice2D.cs │ └── Unmanaged/ │ ├── IImage.cs │ └── Image'1.cs ├── Primitives2D/ │ ├── Box2D/ │ │ └── Box2D.cs │ ├── Circle/ │ │ ├── Circle.cs │ │ └── CircleF.cs │ ├── Ellipse/ │ │ └── Ellipse.cs │ ├── Point/ │ │ ├── Point'1.cs │ │ └── PointExtensions.cs │ ├── Primitives2D.csproj │ ├── Rectangle/ │ │ └── RectangleExtensions.cs │ └── Size/ │ └── SizeExtensions.cs └── UI.Image/ ├── .nuSpec/ │ └── readmeUI.Image.txt ├── Base/ │ ├── CvCoreInvoke.cs │ └── CvInvoke.cs ├── Drawing.cs ├── ImageUI.cs ├── UI.Image.csproj └── runtimes/ └── ubuntu.16.04-x64/ ├── libopencv_core.so.2.4 └── libopencv_highgui.so.2.4