├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE.md ├── docker-appengine.yml ├── stale.yml └── workflows │ ├── docfx.yml │ ├── docker-deploy.yml │ ├── docker-ubuntu.yml │ ├── linux-arm.yml │ ├── macos10.yml.disabled │ ├── publish_nuget.yml │ ├── ubuntu22.yml │ ├── wasm.yml │ └── windows.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── OpenCvSharp.sln ├── OpenCvSharp.sln.DotSettings ├── README.md ├── docfx ├── .gitignore ├── api │ ├── .gitignore │ └── index.md ├── articles │ ├── intro.md │ └── toc.yml ├── docfx.json ├── index.md └── toc.yml ├── docker ├── al2-dotnet5-opencv4.6.0 │ └── Dockerfile ├── al2-opencv4.5.1 │ └── Dockerfile ├── appengine-aspnetcore3.1-opencv4.5.1 │ └── Dockerfile ├── command_sample.txt ├── ubuntu22-dotnet6-opencv4.8.0 │ └── Dockerfile ├── ubuntu22-dotnet6sdk-opencv4.7.0 │ └── Dockerfile └── ubuntu24-dotnet8-opencv4.12.0 │ └── Dockerfile ├── download_opencv_windows.ps1 ├── download_tesseract_windows.ps1 ├── nuget ├── OpenCvSharp4.Extensions.nuspec ├── OpenCvSharp4.Windows.nuspec ├── OpenCvSharp4.WpfExtensions.nuspec ├── OpenCvSharp4.nuspec ├── OpenCvSharp4.official.runtime.linux-x64.csproj ├── OpenCvSharp4.official.runtime.linux-x64.nuspec ├── OpenCvSharp4.runtime.linux-arm.csproj ├── OpenCvSharp4.runtime.linux-arm.nuspec ├── OpenCvSharp4.runtime.osx.10.15-x64.csproj ├── OpenCvSharp4.runtime.osx.10.15-x64.nuspec ├── OpenCvSharp4.runtime.uwp.nuspec ├── OpenCvSharp4.runtime.wasm.csproj ├── OpenCvSharp4.runtime.wasm.nuspec ├── OpenCvSharp4.runtime.wasm.props ├── OpenCvSharp4.runtime.win.nuspec ├── OpenCvSharp4.runtime.win.props └── icon │ ├── Girl.jpg │ ├── Lenna.ico │ ├── lenna-icon.png │ ├── mandrill-ico.png │ └── opencvsharp.png ├── src ├── .nuget │ └── packages.config ├── CMakeLists.txt ├── OpenCvSharp.DebuggerVisualizers │ ├── ImageViewer.cs │ ├── ImageViewer.designer.cs │ ├── ImageViewer.resx │ ├── MatDebuggerVisualizer.cs │ ├── MatObjectSource.cs │ ├── MatProxy.cs │ ├── OpenCvSharp.DebuggerVisualizers.csproj │ ├── OpenCvSharp.dll │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── OpenCvSharp.Extensions │ ├── Binarizer.cs │ ├── BitmapConverter.cs │ ├── CvExtensions.cs │ ├── Key.snk │ ├── OpenCvSharp.Extensions.csproj │ ├── Platform.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── OpenCvSharp.WpfExtensions │ ├── BitmapSourceConverter.cs │ ├── OpenCvSharp.WpfExtensions.csproj │ ├── OpenCvSharp.WpfExtensions.xml │ └── WriteableBitmapConverter.cs ├── OpenCvSharp │ ├── Cv2 │ │ ├── Cv2.cs │ │ ├── Cv2_calib3d.cs │ │ ├── Cv2_core.cs │ │ ├── Cv2_cuda.cs │ │ ├── Cv2_features2d.cs │ │ ├── Cv2_highgui.cs │ │ ├── Cv2_imgcodecs.cs │ │ ├── Cv2_imgproc.cs │ │ ├── Cv2_objdetect.cs │ │ ├── Cv2_photo.cs │ │ ├── Cv2_superres.cs │ │ └── Cv2_video.cs │ ├── Fundamentals │ │ ├── CvObject.cs │ │ ├── DisposableCvObject.cs │ │ ├── DisposableObject.cs │ │ ├── ICvPtrHolder.cs │ │ ├── MatMemoryManager.cs │ │ ├── OpenCVException.cs │ │ ├── OpenCvSharpException.cs │ │ ├── Ptr.cs │ │ └── ResourcesTracker.cs │ ├── Internal │ │ ├── PInvoke │ │ │ ├── ExceptionHandler.cs │ │ │ ├── ExceptionStatus.cs │ │ │ ├── NativeMethods │ │ │ │ ├── NativeMethods.cs │ │ │ │ ├── NativeMethods_aruco.cs │ │ │ │ ├── NativeMethods_bgsegm.cs │ │ │ │ ├── NativeMethods_dnn_superres.cs │ │ │ │ ├── NativeMethods_flann.cs │ │ │ │ ├── NativeMethods_highgui.cs │ │ │ │ ├── NativeMethods_img_hash.cs │ │ │ │ ├── NativeMethods_imgcodecs.cs │ │ │ │ ├── NativeMethods_line_descriptor.cs │ │ │ │ ├── NativeMethods_optflow.cs │ │ │ │ ├── NativeMethods_quality.cs │ │ │ │ ├── NativeMethods_stdstring.cs │ │ │ │ ├── NativeMethods_stdvector.cs │ │ │ │ ├── NativeMethods_videoio.cs │ │ │ │ ├── NativeMethods_wechat_qrcode.cs │ │ │ │ ├── NativeMethods_xfeatures2d.cs │ │ │ │ ├── NativeMethods_xphoto.cs │ │ │ │ ├── calib3d │ │ │ │ │ ├── NativeMethods_calib3d.cs │ │ │ │ │ ├── NativeMethods_calib3d_StereoMatcher.cs │ │ │ │ │ └── NativeMethods_calib3d_fisheye.cs │ │ │ │ ├── core │ │ │ │ │ ├── NativeMethods_core.cs │ │ │ │ │ ├── NativeMethods_core_Algorithm.cs │ │ │ │ │ ├── NativeMethods_core_Classes.cs │ │ │ │ │ ├── NativeMethods_core_FileNode.cs │ │ │ │ │ ├── NativeMethods_core_FileNodeIterator.cs │ │ │ │ │ ├── NativeMethods_core_FileStorage.cs │ │ │ │ │ ├── NativeMethods_core_InputArray.cs │ │ │ │ │ ├── NativeMethods_core_Mat.cs │ │ │ │ │ ├── NativeMethods_core_MatExpr.cs │ │ │ │ │ ├── NativeMethods_core_OutputArray.cs │ │ │ │ │ ├── NativeMethods_core_SparseMat.cs │ │ │ │ │ └── NativeMethods_core_UMat.cs │ │ │ │ ├── cuda │ │ │ │ │ ├── NativeMethods_cuda.cs │ │ │ │ │ └── NativeMethods_cuda_GpuMat.cs │ │ │ │ ├── dnn │ │ │ │ │ ├── NativeMethods_dnn.cs │ │ │ │ │ └── NativeMethods_dnn_Net.cs │ │ │ │ ├── face │ │ │ │ │ ├── NativeMethods_face_FaceRecognizer.cs │ │ │ │ │ └── NativeMethods_face_Facemark.cs │ │ │ │ ├── features2d │ │ │ │ │ ├── NativeMethods_features2d.cs │ │ │ │ │ ├── NativeMethods_features2d_BOW.cs │ │ │ │ │ ├── NativeMethods_features2d_DescriptorMatcher.cs │ │ │ │ │ └── NativeMethods_features2d_Feature2D.cs │ │ │ │ ├── imgproc │ │ │ │ │ ├── NativeMethods_imgproc.cs │ │ │ │ │ ├── NativeMethods_imgproc_CLAHE.cs │ │ │ │ │ ├── NativeMethods_imgproc_GeneralizedHough.cs │ │ │ │ │ ├── NativeMethods_imgproc_LineIterator.cs │ │ │ │ │ ├── NativeMethods_imgproc_LineSegmentDetector.cs │ │ │ │ │ ├── NativeMethods_imgproc_Segmentation.cs │ │ │ │ │ └── NativeMethods_imgproc_Subdiv2D.cs │ │ │ │ ├── ml │ │ │ │ │ ├── NativeMethods_ml_ANN_MLP.cs │ │ │ │ │ ├── NativeMethods_ml_Boost.cs │ │ │ │ │ ├── NativeMethods_ml_DTrees.cs │ │ │ │ │ ├── NativeMethods_ml_EM.cs │ │ │ │ │ ├── NativeMethods_ml_KNearest.cs │ │ │ │ │ ├── NativeMethods_ml_LogisticRegression.cs │ │ │ │ │ ├── NativeMethods_ml_NormalBayesClassifier.cs │ │ │ │ │ ├── NativeMethods_ml_RTrees.cs │ │ │ │ │ ├── NativeMethods_ml_SVM.cs │ │ │ │ │ └── NativeMethods_ml_StatModel.cs │ │ │ │ ├── objdetect │ │ │ │ │ ├── NativeMethods_objdetect.cs │ │ │ │ │ ├── NativeMethods_objdetect_CascadeClassfier.cs │ │ │ │ │ ├── NativeMethods_objdetect_HOGDescriptor.cs │ │ │ │ │ └── NativeMethods_objdetect_QRCodeDetector.cs │ │ │ │ ├── photo │ │ │ │ │ ├── NativeMethods_photo.cs │ │ │ │ │ ├── NativeMethods_photo_HDR.cs │ │ │ │ │ └── NativeMethods_photo_Tonemap.cs │ │ │ │ ├── shape │ │ │ │ │ └── NativeMethods_shape_ShapeDistanceExtractor.cs │ │ │ │ ├── stitching │ │ │ │ │ ├── NativeMethods_stitching.cs │ │ │ │ │ └── NativeMethods_stitching_Matchers.cs │ │ │ │ ├── superres │ │ │ │ │ ├── NativeMethods_superres_DenseOpticalFlowExt.cs │ │ │ │ │ ├── NativeMethods_superres_FrameSource.cs │ │ │ │ │ └── NativeMethods_superres_SuperResolution.cs │ │ │ │ ├── text │ │ │ │ │ ├── NativeMethods_text.cs │ │ │ │ │ └── NativeMethods_text_TextDetector.cs │ │ │ │ ├── traking │ │ │ │ │ └── NativeMethods_tracking.cs │ │ │ │ ├── video │ │ │ │ │ ├── NativeMethods_video_BackgroundSubtractor.cs │ │ │ │ │ └── NativeMethods_video_tracking.cs │ │ │ │ └── ximgproc │ │ │ │ │ ├── NativeMethods_ximgproc.cs │ │ │ │ │ ├── NativeMethods_ximgproc_EdgeBoxes.cs │ │ │ │ │ ├── NativeMethods_ximgproc_EdgeFilter.cs │ │ │ │ │ ├── NativeMethods_ximgproc_FastLineDetector.cs │ │ │ │ │ ├── NativeMethods_ximgproc_RidgeDetectionFilter.cs │ │ │ │ │ ├── NativeMethods_ximgproc_Segmentation.cs │ │ │ │ │ ├── NativeMethods_ximgproc_StructuredEdgeDetection.cs │ │ │ │ │ └── NativeMethods_ximgproc_Superpixel.cs │ │ │ ├── StdString.cs │ │ │ ├── Win32API.cs │ │ │ └── WindowsLibraryLoader.cs │ │ ├── Util │ │ │ ├── ArrayAddress.cs │ │ │ ├── ArrayAddress2.cs │ │ │ ├── EnumerableExtensions.cs │ │ │ ├── PInvokeHelper.cs │ │ │ ├── Platform.cs │ │ │ ├── ReadOnlyArray2D.cs │ │ │ ├── SaturateCast.cs │ │ │ └── ScopedGCHandle.cs │ │ └── Vectors │ │ │ ├── IStdVector.cs │ │ │ ├── VectorOfByte.cs │ │ │ ├── VectorOfDMatch.cs │ │ │ ├── VectorOfDTreesNode.cs │ │ │ ├── VectorOfDTreesSplit.cs │ │ │ ├── VectorOfDouble.cs │ │ │ ├── VectorOfFloat.cs │ │ │ ├── VectorOfImageFeatures.cs │ │ │ ├── VectorOfInt32.cs │ │ │ ├── VectorOfKeyLine.cs │ │ │ ├── VectorOfKeyPoint.cs │ │ │ ├── VectorOfMat.cs │ │ │ ├── VectorOfPoint.cs │ │ │ ├── VectorOfPoint2d.cs │ │ │ ├── VectorOfPoint2f.cs │ │ │ ├── VectorOfPoint3f.cs │ │ │ ├── VectorOfRect.cs │ │ │ ├── VectorOfRect2d.cs │ │ │ ├── VectorOfRotatedRect.cs │ │ │ ├── VectorOfString.cs │ │ │ ├── VectorOfVec2f.cs │ │ │ ├── VectorOfVec3f.cs │ │ │ ├── VectorOfVec4f.cs │ │ │ ├── VectorOfVec4i.cs │ │ │ ├── VectorOfVec6f.cs │ │ │ ├── VectorOfVectorByte.cs │ │ │ ├── VectorOfVectorDMatch.cs │ │ │ ├── VectorOfVectorDouble.cs │ │ │ ├── VectorOfVectorInt32.cs │ │ │ ├── VectorOfVectorKeyLine.cs │ │ │ ├── VectorOfVectorKeyPoint.cs │ │ │ ├── VectorOfVectorPoint.cs │ │ │ └── VectorOfVectorPoint2f.cs │ ├── Key.snk │ ├── Modules │ │ ├── aruco │ │ │ ├── CvAruco.cs │ │ │ ├── DetectorParameters.cs │ │ │ ├── Dictionary.cs │ │ │ └── Enum │ │ │ │ ├── CornerRefineMethod.cs │ │ │ │ └── PredefinedDictionaryName.cs │ │ ├── bgsegm │ │ │ ├── BackgroundSubtractorGMG.cs │ │ │ └── BackgroundSubtractorMOG.cs │ │ ├── calib3d │ │ │ ├── Enum │ │ │ │ ├── CalibrationFlags.cs │ │ │ │ ├── ChessboardFlags.cs │ │ │ │ ├── EssentialMatMethod.cs │ │ │ │ ├── FindCirclesGridFlags.cs │ │ │ │ ├── FishEyeCalibrationFlags.cs │ │ │ │ ├── FundamentalMatMethods.cs │ │ │ │ ├── HandEyeCalibrationMethod.cs │ │ │ │ ├── HomographyMethods.cs │ │ │ │ ├── ProjectionType.cs │ │ │ │ ├── RobotWorldHandEyeCalibrationMethod.cs │ │ │ │ ├── RobustEstimationAlgorithms.cs │ │ │ │ ├── SolvePnPFlags.cs │ │ │ │ └── StereoRectificationFlags.cs │ │ │ ├── StereoBM.cs │ │ │ ├── StereoMatcher.cs │ │ │ ├── StereoSGBM.cs │ │ │ └── UsacParams.cs │ │ ├── core │ │ │ ├── Algorithm.cs │ │ │ ├── Delegate │ │ │ │ ├── CvErrorCallback.cs │ │ │ │ └── MatForeachFunction.cs │ │ │ ├── Enum │ │ │ │ ├── AccessFlag.cs │ │ │ │ ├── AlgorithmParamType.cs │ │ │ │ ├── BorderTypes.cs │ │ │ │ ├── CmpType.cs │ │ │ │ ├── CovarFlags.cs │ │ │ │ ├── CpuFeatures.cs │ │ │ │ ├── CriteriaTypes.cs │ │ │ │ ├── DctFlags.cs │ │ │ │ ├── DecompTypes.cs │ │ │ │ ├── DftFlags.cs │ │ │ │ ├── DistributionType.cs │ │ │ │ ├── ErrorCode.cs │ │ │ │ ├── FormatType.cs │ │ │ │ ├── GemmFlags.cs │ │ │ │ ├── HersheyFonts.cs │ │ │ │ ├── InOutArrayKind.cs │ │ │ │ ├── KMeansFlags.cs │ │ │ │ ├── LogLevel.cs │ │ │ │ ├── MatDiagType.cs │ │ │ │ ├── NormTypes.cs │ │ │ │ ├── ReduceDimension.cs │ │ │ │ ├── ReduceTypes.cs │ │ │ │ ├── RotateFlags.cs │ │ │ │ ├── SolveLPResult.cs │ │ │ │ ├── SortFlags.cs │ │ │ │ └── UMatUsageFlags.cs │ │ │ ├── FileNode.cs │ │ │ ├── FileNodeIterator.cs │ │ │ ├── FileStorage.cs │ │ │ ├── InputArray.cs │ │ │ ├── InputOutputArray.cs │ │ │ ├── LDA.cs │ │ │ ├── Mat │ │ │ │ ├── Mat.cs │ │ │ │ ├── MatIndexer.cs │ │ │ │ ├── MatOfT.cs │ │ │ │ ├── MatPinning.cs │ │ │ │ ├── Mat_CvMethods.cs │ │ │ │ └── UMat.cs │ │ │ ├── MatExpr.cs │ │ │ ├── MatExprRowColIndexer.cs │ │ │ ├── MatExpr_CvMethods.cs │ │ │ ├── OutputArray.cs │ │ │ ├── OutputArrayOfMatList.cs │ │ │ ├── OutputArrayOfStructList.cs │ │ │ ├── PCA.cs │ │ │ ├── RNG.cs │ │ │ ├── RNG_MT19937.cs │ │ │ ├── SVD.cs │ │ │ ├── SparseMat.cs │ │ │ ├── SparseMatIndexer.cs │ │ │ └── Struct │ │ │ │ ├── DMatch.cs │ │ │ │ ├── KeyPoint.cs │ │ │ │ ├── MatType.cs │ │ │ │ ├── Point.cs │ │ │ │ ├── Point2d.cs │ │ │ │ ├── Point2f.cs │ │ │ │ ├── Point3d.cs │ │ │ │ ├── Point3f.cs │ │ │ │ ├── Point3i.cs │ │ │ │ ├── Range.cs │ │ │ │ ├── Rangef.cs │ │ │ │ ├── Rect.cs │ │ │ │ ├── Rect2d.cs │ │ │ │ ├── Rect2f.cs │ │ │ │ ├── RotatedRect.cs │ │ │ │ ├── Scalar.cs │ │ │ │ ├── Size.cs │ │ │ │ ├── Size2d.cs │ │ │ │ ├── Size2f.cs │ │ │ │ ├── TermCriteria.cs │ │ │ │ └── Vec │ │ │ │ ├── IVec.cs │ │ │ │ ├── Vec2b.cs │ │ │ │ ├── Vec2d.cs │ │ │ │ ├── Vec2f.cs │ │ │ │ ├── Vec2i.cs │ │ │ │ ├── Vec2s.cs │ │ │ │ ├── Vec2w.cs │ │ │ │ ├── Vec3b.cs │ │ │ │ ├── Vec3d.cs │ │ │ │ ├── Vec3f.cs │ │ │ │ ├── Vec3i.cs │ │ │ │ ├── Vec3s.cs │ │ │ │ ├── Vec3w.cs │ │ │ │ ├── Vec4b.cs │ │ │ │ ├── Vec4d.cs │ │ │ │ ├── Vec4f.cs │ │ │ │ ├── Vec4i.cs │ │ │ │ ├── Vec4s.cs │ │ │ │ ├── Vec4w.cs │ │ │ │ ├── Vec6b.cs │ │ │ │ ├── Vec6d.cs │ │ │ │ ├── Vec6f.cs │ │ │ │ ├── Vec6i.cs │ │ │ │ ├── Vec6s.cs │ │ │ │ └── Vec6w.cs │ │ ├── cuda │ │ │ ├── DescriptorFormat.cs │ │ │ ├── DeviceInfo.cs │ │ │ ├── DisposableGpuObject.cs │ │ │ ├── Enum │ │ │ │ ├── CudaMemAllocType.cs │ │ │ │ └── FeatureSet.cs │ │ │ ├── GpuMat.cs │ │ │ ├── GpuMatIndexer.cs │ │ │ ├── GpuMatRowColIndexer.cs │ │ │ └── Stream.cs │ │ ├── dnn │ │ │ ├── Backend.cs │ │ │ ├── CvDnn.cs │ │ │ ├── Net.cs │ │ │ └── Target.cs │ │ ├── dnn_superres │ │ │ └── DnnSuperResImpl.cs │ │ ├── face │ │ │ ├── FaceRecognizer │ │ │ │ ├── BasicFaceRecognizer.cs │ │ │ │ ├── EigenFaceRecognizer.cs │ │ │ │ ├── FaceRecognizer.cs │ │ │ │ ├── FisherFaceRecognizer.cs │ │ │ │ └── LBPHFaceRecognizer.cs │ │ │ └── Facemark │ │ │ │ ├── Facemark.cs │ │ │ │ ├── FacemarkAAM.cs │ │ │ │ └── FacemarkLBF.cs │ │ ├── features2d │ │ │ ├── AKAZE.cs │ │ │ ├── AgastFeatureDetector.cs │ │ │ ├── BFMatcher.cs │ │ │ ├── BOWImgDescriptorExtractor.cs │ │ │ ├── BOWKMeansTrainer.cs │ │ │ ├── BOWTrainer.cs │ │ │ ├── BRISK.cs │ │ │ ├── DenseFeatureDetector.cs │ │ │ ├── DescriptorMatcher.cs │ │ │ ├── Enum │ │ │ │ ├── AKAZEDescriptorType.cs │ │ │ │ ├── DrawMatchesFlags.cs │ │ │ │ ├── FASTType.cs │ │ │ │ ├── KAZEDiffusivityType.cs │ │ │ │ └── ORBScoreType.cs │ │ │ ├── FastFeatureDetector.cs │ │ │ ├── Feature2D.cs │ │ │ ├── FlannBasedMatcher.cs │ │ │ ├── GFTTDetector.cs │ │ │ ├── KAZE.cs │ │ │ ├── KeyPointsFilter.cs │ │ │ ├── MSER.cs │ │ │ ├── ORB.cs │ │ │ ├── SIFT.cs │ │ │ └── SimpleBlobDetector.cs │ │ ├── flann │ │ │ ├── FlannCentersInit.cs │ │ │ ├── FlannDistance.cs │ │ │ ├── Index.cs │ │ │ └── IndexParams │ │ │ │ ├── AutotunedIndexParams.cs │ │ │ │ ├── CompositeIndexParams.cs │ │ │ │ ├── IndexParams.cs │ │ │ │ ├── KDTreeIndexParams.cs │ │ │ │ ├── KMeansIndexParams.cs │ │ │ │ ├── LinearIndexParams.cs │ │ │ │ ├── LshIndexParams.cs │ │ │ │ ├── SavedIndexParams.cs │ │ │ │ └── SearchParams.cs │ │ ├── highgui │ │ │ ├── CvTrackbar.cs │ │ │ ├── Enum │ │ │ │ ├── ButtonType.cs │ │ │ │ ├── MouseEventFlags.cs │ │ │ │ ├── MouseEventTypes.cs │ │ │ │ ├── WindowFlags.cs │ │ │ │ └── WindowPropertyFlags.cs │ │ │ ├── MouseCallback.cs │ │ │ ├── TrackbarCallback.cs │ │ │ └── Window.cs │ │ ├── img_hash │ │ │ ├── AverageHash.cs │ │ │ ├── BlockMeanHash.cs │ │ │ ├── ColorMomentHash.cs │ │ │ ├── Enum │ │ │ │ └── BlockMeanHashMode.cs │ │ │ ├── ImgHashBase.cs │ │ │ ├── MarrHildrethHash.cs │ │ │ ├── PHash.cs │ │ │ └── RadialVarianceHash.cs │ │ ├── imgcodecs │ │ │ ├── Enum │ │ │ │ ├── ConvertImageModes.cs │ │ │ │ ├── ImreadModes.cs │ │ │ │ ├── ImwriteEXRTypeFlags.cs │ │ │ │ ├── ImwriteFlags.cs │ │ │ │ ├── ImwritePAMFlags.cs │ │ │ │ └── ImwritePNGFlags.cs │ │ │ └── ImageEncodingParam.cs │ │ ├── imgproc │ │ │ ├── CLAHE.cs │ │ │ ├── ConnectedComponent.cs │ │ │ ├── Enum │ │ │ │ ├── AdaptiveThresholdTypes.cs │ │ │ │ ├── ColorConversionCodes.cs │ │ │ │ ├── ColormapTypes.cs │ │ │ │ ├── ConnectedComponentsAlgorithmsTypes.cs │ │ │ │ ├── ConnectedComponentsTypes.cs │ │ │ │ ├── ContourApproximationModes.cs │ │ │ │ ├── DistanceTransformLabelTypes.cs │ │ │ │ ├── DistanceTransformMasks.cs │ │ │ │ ├── DistanceTypes.cs │ │ │ │ ├── FlipMode.cs │ │ │ │ ├── FloodFillFlags.cs │ │ │ │ ├── GrabCutClasses.cs │ │ │ │ ├── GrabCutModes.cs │ │ │ │ ├── HistCompMethods.cs │ │ │ │ ├── HoughModes.cs │ │ │ │ ├── InterpolationFlags.cs │ │ │ │ ├── LineSegmentDetectorModes.cs │ │ │ │ ├── LineTypes.cs │ │ │ │ ├── MarkerTypes.cs │ │ │ │ ├── MorphShapes.cs │ │ │ │ ├── MorphTypes.cs │ │ │ │ ├── PixelConnectivity.cs │ │ │ │ ├── RectanglesIntersectTypes.cs │ │ │ │ ├── RetrievalModes.cs │ │ │ │ ├── ShapeMatchModes.cs │ │ │ │ ├── TemplateMatchModes.cs │ │ │ │ ├── ThresholdTypes.cs │ │ │ │ └── WarpPolarMode.cs │ │ │ ├── GeneralizedHough.cs │ │ │ ├── GeneralizedHoughBallard.cs │ │ │ ├── GeneralizedHoughGuil.cs │ │ │ ├── IntelligentScissorsMB.cs │ │ │ ├── LineIterator.cs │ │ │ ├── LineSegmentDetector.cs │ │ │ ├── Model │ │ │ │ ├── CircleSegment.cs │ │ │ │ ├── HierarchyIndex.cs │ │ │ │ ├── Line2D.cs │ │ │ │ ├── Line3D.cs │ │ │ │ ├── LineSegmentPoint.cs │ │ │ │ └── LineSegmentPolar.cs │ │ │ ├── Moments.cs │ │ │ └── Subdiv2D.cs │ │ ├── line_descriptors │ │ │ ├── KeyLine.cs │ │ │ ├── LSDDetector.cs │ │ │ └── LSDParam.cs │ │ ├── ml │ │ │ ├── ANN_MLP.cs │ │ │ ├── Boost.cs │ │ │ ├── DTrees.cs │ │ │ ├── EM.cs │ │ │ ├── Enum │ │ │ │ └── SampleTypes.cs │ │ │ ├── KNearest.cs │ │ │ ├── LogisticRegression.cs │ │ │ ├── NormalBayesClassifier.cs │ │ │ ├── ParamGrid.cs │ │ │ ├── RTrees.cs │ │ │ ├── SVM.cs │ │ │ ├── StatModel.cs │ │ │ └── TrainData.cs │ │ ├── objdetect │ │ │ ├── CascadeClassifier.cs │ │ │ ├── Enum │ │ │ │ └── HaarDetectionTypes.cs │ │ │ ├── HOGDescriptor.cs │ │ │ ├── HistogramNormType.cs │ │ │ ├── QRCodeDetector.cs │ │ │ └── SimilarRects.cs │ │ ├── optflow │ │ │ └── CvOptFlow.cs │ │ ├── photo │ │ │ ├── CalibrateCRF.cs │ │ │ ├── CalibrateDebevec.cs │ │ │ ├── CalibrateRobertson.cs │ │ │ ├── EdgePreservingMethods.cs │ │ │ ├── InpaintMethod.cs │ │ │ ├── MergeDebevec.cs │ │ │ ├── MergeExposures.cs │ │ │ ├── MergeMertens.cs │ │ │ ├── SeamlessCloneMethods.cs │ │ │ ├── Tonemap.cs │ │ │ ├── TonemapDrago.cs │ │ │ ├── TonemapMantiuk.cs │ │ │ └── TonemapReinhard.cs │ │ ├── quality │ │ │ ├── QualityBRISQUE.cs │ │ │ ├── QualityBase.cs │ │ │ ├── QualityGMSD.cs │ │ │ ├── QualityMSE.cs │ │ │ ├── QualityPSNR.cs │ │ │ └── QualitySSIM.cs │ │ ├── shape │ │ │ ├── HausdorffDistanceExtractor.cs │ │ │ ├── ShapeContextDistanceExtractor.cs │ │ │ └── ShapeDistanceExtractor.cs │ │ ├── stitching │ │ │ ├── AffineBestOf2NearestMatcher.cs │ │ │ ├── BestOf2NearestMatcher.cs │ │ │ ├── CvDetail.cs │ │ │ ├── FeaturesMatcher.cs │ │ │ ├── ImageFeatures.cs │ │ │ ├── MatchesInfo.cs │ │ │ └── Stitcher.cs │ │ ├── superres │ │ │ ├── BroxOpticalFlow.cs │ │ │ ├── DenseOpticalFlowExt.cs │ │ │ ├── DualTVL1OpticalFlow.cs │ │ │ ├── FarnebackOpticalFlow.cs │ │ │ ├── FrameSource.cs │ │ │ ├── PyrLKOpticalFlow.cs │ │ │ └── SuperResolution.cs │ │ ├── text │ │ │ ├── BaseOCR.cs │ │ │ ├── ComponentLevels.cs │ │ │ ├── CvText.cs │ │ │ ├── OCRTesseract.cs │ │ │ ├── TextDetector.cs │ │ │ └── TextDetectorCNN.cs │ │ ├── tracking │ │ │ ├── Enum │ │ │ │ └── TrackerTypes.cs │ │ │ ├── TrackerCSRT.cs │ │ │ └── TrackerKCF.cs │ │ ├── video │ │ │ ├── BackgroundSubtractor.cs │ │ │ ├── BackgroundSubtractorKNN.cs │ │ │ ├── BackgroundSubtractorMog2.cs │ │ │ ├── Enum │ │ │ │ ├── MotionTypes.cs │ │ │ │ └── OpticalFlowFlags.cs │ │ │ ├── KalmanFilter.cs │ │ │ ├── Tracker.cs │ │ │ ├── TrackerGOTURN.cs │ │ │ └── TrackerMIL.cs │ │ ├── videoio │ │ │ ├── Enum │ │ │ │ ├── CameraChannels.cs │ │ │ │ ├── CapturePosRatio.cs │ │ │ │ ├── CaptureType.cs │ │ │ │ ├── VideoAccelerationType.cs │ │ │ │ ├── VideoCaptureAPIs.cs │ │ │ │ ├── VideoCapturePara.cs │ │ │ │ ├── VideoCaptureProperties.cs │ │ │ │ ├── VideoWriterPara.cs │ │ │ │ └── VideoWriterProperties.cs │ │ │ ├── FourCC.cs │ │ │ ├── VideoCapture.cs │ │ │ └── VideoWriter.cs │ │ ├── wechat_qrcode │ │ │ └── WeChatQRCode.cs │ │ ├── xfeatures2d │ │ │ ├── BriefDescriptorExtractor.cs │ │ │ ├── FREAK.cs │ │ │ ├── LATCH.cs │ │ │ ├── LUCID.cs │ │ │ ├── SURF.cs │ │ │ └── StarDetector.cs │ │ ├── ximgproc │ │ │ ├── CvXImgProc.cs │ │ │ ├── EdgeBoxes.cs │ │ │ ├── EdgeFilter │ │ │ │ ├── AdaptiveManifoldFilter.cs │ │ │ │ ├── DTFilter.cs │ │ │ │ ├── FastBilateralSolverFilter.cs │ │ │ │ ├── FastGlobalSmootherFilter.cs │ │ │ │ └── GuidedFilter.cs │ │ │ ├── Enum │ │ │ │ ├── AngleRangeOption.cs │ │ │ │ ├── EdgeAwareFiltersList.cs │ │ │ │ ├── HoughDeskewOption.cs │ │ │ │ ├── HoughOP.cs │ │ │ │ ├── LocalBinarizationMethods.cs │ │ │ │ ├── RulesOption.cs │ │ │ │ ├── SLICType.cs │ │ │ │ ├── ThinningTypes.cs │ │ │ │ └── WMFWeightType.cs │ │ │ ├── FastLineDetector.cs │ │ │ ├── RFFeatureGetter.cs │ │ │ ├── RidgeDetectionFilter.cs │ │ │ ├── Segmentation │ │ │ │ ├── GraphSegmentation.cs │ │ │ │ ├── SelectiveSearchSegmentation.cs │ │ │ │ ├── SelectiveSearchSegmentationStrategy.cs │ │ │ │ └── SelectiveSearchSegmentationStrategyMultiple.cs │ │ │ ├── StructuredEdgeDetection.cs │ │ │ └── Superpixel │ │ │ │ ├── SuperpixelLSC.cs │ │ │ │ ├── SuperpixelSEEDS.cs │ │ │ │ └── SuperpixelSLIC.cs │ │ └── xphoto │ │ │ ├── CvXPhoto.cs │ │ │ ├── Enum │ │ │ ├── Bm3dSteps.cs │ │ │ ├── InpaintTypes.cs │ │ │ └── TransformTypes.cs │ │ │ ├── GrayworldWB.cs │ │ │ ├── LearningBasedWB.cs │ │ │ ├── SimpleWB.cs │ │ │ ├── TonemapDurand.cs │ │ │ └── WhiteBalancer.cs │ ├── OpenCvSharp.csproj │ ├── OpenCvSharp.dll.config │ └── Properties │ │ └── AssemblyInfo.cs ├── OpenCvSharpExtern │ ├── CMakeLists.txt │ ├── OpenCvSharpExtern.vcxproj │ ├── OpenCvSharpExtern.vcxproj.filters │ ├── aruco.cpp │ ├── aruco.h │ ├── bgsegm.cpp │ ├── bgsegm.h │ ├── calib3d.cpp │ ├── calib3d.h │ ├── calib3d_StereoMatcher.h │ ├── calib3d_fisheye.h │ ├── core.cpp │ ├── core.h │ ├── core_Algorithm.h │ ├── core_FileNode.h │ ├── core_FileStorage.h │ ├── core_InputArray.h │ ├── core_LDA.h │ ├── core_Mat.h │ ├── core_MatExpr.h │ ├── core_OutputArray.h │ ├── core_PCA.h │ ├── core_SVD.h │ ├── core_SparseMat.h │ ├── core_UMat.h │ ├── cuda.cpp │ ├── cuda.h │ ├── cuda_GpuMat.h │ ├── dnn.cpp │ ├── dnn.h │ ├── dnn_Net.h │ ├── dnn_superres.cpp │ ├── dnn_superres.h │ ├── face.cpp │ ├── face_FaceRecognizer.h │ ├── face_Facemark.h │ ├── features2d.cpp │ ├── features2d.h │ ├── features2d_BOW.h │ ├── features2d_DescriptorMatcher.h │ ├── features2d_Feature2D.h │ ├── flann.cpp │ ├── flann.h │ ├── flann_IndexParams.h │ ├── highgui.cpp │ ├── highgui.h │ ├── img_hash.cpp │ ├── img_hash.h │ ├── imgcodecs.cpp │ ├── imgcodecs.h │ ├── imgproc.cpp │ ├── imgproc.h │ ├── imgproc_CLAHE.h │ ├── imgproc_GeneralizedHough.h │ ├── imgproc_LineIterator.h │ ├── imgproc_LineSegmentDetector.h │ ├── imgproc_Segmentation.h │ ├── imgproc_Subdiv2D.h │ ├── include_opencv.h │ ├── line_descriptor.cpp │ ├── line_descriptor.h │ ├── ml.cpp │ ├── ml.h │ ├── ml_ANN_MLP.h │ ├── ml_Boost.h │ ├── ml_DTrees.h │ ├── ml_EM.h │ ├── ml_KNearest.h │ ├── ml_LogisticRegression.h │ ├── ml_NormalBayesClassifier.h │ ├── ml_RTrees.h │ ├── ml_SVM.h │ ├── ml_StatModel.h │ ├── my_functions.h │ ├── my_types.h │ ├── objdetect.cpp │ ├── objdetect.h │ ├── objdetect_HOGDescriptor.h │ ├── objdetect_QRCodeDetector.h │ ├── optflow.cpp │ ├── optflow.h │ ├── optflow_motempl.h │ ├── photo.cpp │ ├── photo.h │ ├── photo_HDR.h │ ├── photo_Tonemap.h │ ├── quality.cpp │ ├── quality.h │ ├── shape.cpp │ ├── shape_ShapeDistanceExtractor.h │ ├── std_string.cpp │ ├── std_string.h │ ├── std_vector.cpp │ ├── std_vector.h │ ├── std_vector_nesting.h │ ├── std_vector_primitive.h │ ├── stitching.cpp │ ├── stitching.h │ ├── stitching_detail_Matchers.h │ ├── superres.cpp │ ├── superres.h │ ├── text.cpp │ ├── text.h │ ├── text_TextDetector.h │ ├── tracking.cpp │ ├── tracking.h │ ├── tracking_UnscentedKalmanFilter.h │ ├── video.cpp │ ├── video.h │ ├── video_background_segm.h │ ├── video_tracking.h │ ├── videoio.cpp │ ├── videoio.h │ ├── wechat_qrcode.cpp │ ├── wechat_qrcode.h │ ├── xfeatures2d.cpp │ ├── xfeatures2d.h │ ├── ximgproc.cpp │ ├── ximgproc.h │ ├── ximgproc_EdgeBoxes.h │ ├── ximgproc_EdgeFilter.h │ ├── ximgproc_FastLineDetector.h │ ├── ximgproc_RidgeDetectionFilter.h │ ├── ximgproc_Segmentation.h │ ├── ximgproc_StructuredEdgeDetection.h │ ├── ximgproc_SuperPixel.h │ ├── xphoto.cpp │ └── xphoto.h └── uwpOpenCvSharpExtern │ ├── OpenCvSharpExtern.vcxproj.filters │ ├── pch.cpp │ ├── pch.h │ ├── uwpOpenCvSharpExtern.vcxproj │ └── uwpOpenCvSharpExtern.vcxproj.filters ├── test ├── OpenCvSharp.DebuggerVisualizers.Tester │ ├── App.config │ ├── OpenCvSharp.DebuggerVisualizers.Tester.csproj │ ├── Program.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── _data │ │ └── image │ │ └── calibration │ │ └── 00.jpg ├── OpenCvSharp.Tests.Windows │ ├── BitmapConverterTest.cs │ ├── BitmapSourceConverterTest.cs │ ├── OpenCvSharp.Tests.Windows.csproj │ └── WriteableBitmapConverterTest.cs └── OpenCvSharp.Tests │ ├── ArchitectureSpecificFactAttribute.cs │ ├── DoubleEqualityComparer.cs │ ├── ExplicitFactAttribute.cs │ ├── ExplicitTheoryAttribute.cs │ ├── FileDownloader.cs │ ├── OpenCvSharp.Tests.csproj │ ├── PlatformSpecificFactAttribute.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── TestBase.cs │ ├── _data │ ├── aruco │ │ └── Dict6X6_1000.yaml │ ├── image │ │ ├── 8bpp_indexed.png │ │ ├── Dnn │ │ │ ├── MNIST_5.png │ │ │ └── MNIST_9.png │ │ ├── ETHZ │ │ │ ├── Readme.md │ │ │ └── seq03-img-left │ │ │ │ ├── image_00000000_0.png │ │ │ │ ├── image_00000001_0.png │ │ │ │ ├── image_00000002_0.png │ │ │ │ ├── image_00000003_0.png │ │ │ │ ├── image_00000004_0.png │ │ │ │ ├── image_00000005_0.png │ │ │ │ ├── image_00000006_0.png │ │ │ │ ├── image_00000007_0.png │ │ │ │ ├── image_00000008_0.png │ │ │ │ ├── image_00000009_0.png │ │ │ │ ├── image_00000010_0.png │ │ │ │ ├── image_00000011_0.png │ │ │ │ ├── image_00000012_0.png │ │ │ │ ├── image_00000013_0.png │ │ │ │ ├── image_00000014_0.png │ │ │ │ ├── image_00000015_0.png │ │ │ │ ├── image_00000016_0.png │ │ │ │ ├── image_00000017_0.png │ │ │ │ ├── image_00000018_0.png │ │ │ │ ├── image_00000019_0.png │ │ │ │ └── image_00000020_0.png │ │ ├── abbey_road.jpg │ │ ├── alphabet.png │ │ ├── blob │ │ │ ├── shapes1.png │ │ │ ├── shapes2.png │ │ │ └── shapes3.png │ │ ├── building.jpg │ │ ├── building_mask.bmp │ │ ├── calibration │ │ │ └── 00.jpg │ │ ├── empty.gif │ │ ├── houghp.png │ │ ├── imageText.png │ │ ├── imageTextR.png │ │ ├── issue │ │ │ └── 821.jpg │ │ ├── lenna.png │ │ ├── mandrill.png │ │ ├── markers_6x6_250.png │ │ ├── multipage_p1.tif │ │ ├── multipage_p2.tif │ │ ├── peilin_plane.png │ │ ├── qr.png │ │ ├── qr_multi.png │ │ ├── qr_multibyte_letters.png │ │ ├── qr_singlebyte_letters.png │ │ ├── space_shuttle.jpg │ │ ├── tsukuba_left.png │ │ └── tsukuba_right.png │ ├── model │ │ ├── FSRCNN_x4.pb │ │ └── MNISTTest_tensorflow.pb │ ├── tessdata │ │ ├── configs │ │ │ ├── ambigs.train │ │ │ ├── api_config │ │ │ ├── bigram │ │ │ ├── box.train │ │ │ ├── box.train.stderr │ │ │ ├── digits │ │ │ ├── hocr │ │ │ ├── inter │ │ │ ├── kannada │ │ │ ├── linebox │ │ │ ├── logfile │ │ │ ├── makebox │ │ │ ├── quiet │ │ │ ├── rebox │ │ │ ├── strokewidth │ │ │ └── unlv │ │ ├── eng.traineddata │ │ ├── pdf.ttf │ │ └── tessconfigs │ │ │ ├── batch │ │ │ ├── batch.nochop │ │ │ ├── matdemo │ │ │ ├── msdemo │ │ │ ├── nobatch │ │ │ └── segdemo │ ├── text │ │ ├── brisque_model_live.yml │ │ ├── brisque_range_live.yml │ │ ├── bvlc_googlenet.prototxt │ │ ├── haarcascade_frontalface_default.xml │ │ ├── synset_words.txt │ │ └── textbox.prototxt │ └── wechat_qrcode │ │ ├── detect.caffemodel │ │ ├── detect.prototxt │ │ ├── sr.caffemodel │ │ └── sr.prototxt │ ├── aruco │ └── ArucoTest.cs │ ├── calib3d │ ├── Calib3dTest.cs │ ├── StereoBMTest.cs │ └── StereoSGBMTest.cs │ ├── core │ ├── AlgorithmTest.cs │ ├── CoreTest.cs │ ├── FileStorageTest.cs │ ├── LDATest.cs │ ├── MatExprTest.cs │ ├── MatTest.cs │ ├── MatTypeTest.cs │ ├── RNGTest.cs │ ├── RNG_MT19937Test.cs │ ├── Rect2dTest.cs │ ├── Rect2fTest.cs │ ├── RectTest.cs │ ├── RotatedRectTest.cs │ ├── ScalarTest.cs │ ├── SizeTest.cs │ ├── SolveEquationTest.cs │ ├── SparseMatTest.cs │ ├── UMatTest.cs │ ├── UtilityTest.cs │ └── VecTest.cs │ ├── dll │ ├── x64 │ │ └── dummy.txt │ └── x86 │ │ └── dummy.txt │ ├── dnn │ ├── CaffeTest.cs │ ├── DnnDataFixture.cs │ ├── DnnTest.cs │ ├── EastTextDetectionTest.cs │ ├── ModelDownloader.cs │ ├── NetTest.cs │ ├── TensorflowTest.cs │ └── YoloTest.cs │ ├── dnn_superres │ └── DnnSuperResImplTest.cs │ ├── face │ ├── FacemarkAAMTest.cs │ ├── FacemarkLBFTest.cs │ └── LBPHFaceRecognizerTest.cs │ ├── features2d │ ├── BOWImgDescriptorExtractorTest.cs │ ├── BOWKMeansTrainerTest.cs │ ├── FastFeatureDetectorTest.cs │ ├── FlannBasedMatcherTest.cs │ ├── ORBTest.cs │ └── SIFTTest.cs │ ├── highgui │ ├── HighGuiTest.cs │ └── TrackbarTest.cs │ ├── img_hash │ ├── AverageHashTest.cs │ ├── BlockMeanHashTest.cs │ ├── ColorMomentHashTest.cs │ ├── MarrHildrethHashTest.cs │ ├── PHashTest.cs │ └── RadialVarianceHashTest.cs │ ├── imgcodecs │ └── ImgCodecsTest.cs │ ├── imgproc │ ├── CLAHETest.cs │ ├── ConnectedComponentsTest.cs │ ├── ImgProcTest.cs │ ├── IntelligentScissorsMBTest.cs │ ├── LineIteratorTest.cs │ └── Subdiv2DTest.cs │ ├── line_descriptor │ └── LSDDetectorTest.cs │ ├── ml │ ├── ANN_MLPTest.cs │ ├── BoostTest.cs │ ├── EMTest.cs │ ├── KNearestTest.cs │ ├── RTreesTest.cs │ └── SVMTest.cs │ ├── objdetect │ ├── HOGDescriptorTest.cs │ └── QRCodeDetectorTest.cs │ ├── photo │ ├── PhotoTest.cs │ ├── TonemapDragoTest.cs │ ├── TonemapMantiukTest.cs │ ├── TonemapReinhardTest.cs │ └── TonemapTest.cs │ ├── quality │ ├── QualityBRISQUETest.cs │ ├── QualityGMSDTest.cs │ ├── QualityMSETest.cs │ ├── QualityPSNRTest.cs │ └── QualitySSIMTest.cs │ ├── stitching │ ├── CvDetailTest.cs │ └── StitchingTest.cs │ ├── system │ ├── AppDomainTest.cs │ ├── ExceptionTest.cs │ ├── SaturateCastTest.cs │ ├── StdStringTest.cs │ ├── VectorTest.cs │ └── WindowsLibraryLoaderTest.cs │ ├── text │ ├── DetectTextSWTTest.cs │ ├── OCRTesseractTest.cs │ └── TextDetectorTest.cs │ ├── tracking │ ├── TrackerCSRTTest.cs │ ├── TrackerGOTURNTest.cs │ ├── TrackerKCFTest.cs │ ├── TrackerMILTest.cs │ └── TrackerTestBase.cs │ ├── video │ ├── BackgroundSubtractorKNNTest.cs │ ├── BackgroundSubtractorMOG2Test.cs │ └── KalmanTest.cs │ ├── videoio │ ├── VideoCaptureTest.cs │ └── VideoWriterTest.cs │ ├── wechat_qrcode │ └── WeChatQRCodeTest.cs │ ├── xfeatures2d │ ├── LATCHTest.cs │ ├── LUCIDTest.cs │ └── SURFTest.cs │ ├── ximgproc │ ├── EdgeBoxesTest.cs │ ├── EdgeFilterTest.cs │ ├── FastHoughTransformTest.cs │ ├── FastLineDetectorTest.cs │ ├── RidgeDetectionFilterTest.cs │ ├── StructuredEdgeDetectionTest.cs │ ├── SuperpixelTest.cs │ └── XimgProcTest.cs │ └── xphoto │ ├── TonemapDurandTest.cs │ └── XPhotoTest.cs ├── tool ├── OpenCvSharp.NupkgBetaRemover │ ├── App.config │ ├── OpenCvSharp.NupkgBetaRemover.csproj │ ├── Program.cs │ └── Properties │ │ └── AssemblyInfo.cs └── OpenCvSharp.ReleaseMaker │ ├── OpenCvSharp.ReleaseMaker.csproj │ ├── Packer.cs │ └── Program.cs └── web └── img ├── cpp_histogram ├── grayscale_histogram.png └── lenna_grayscale.png ├── debugger-visualizer ├── cvmat_1.png ├── iplimage_1.png └── iplimage_2.png ├── how-to-install-via-nuget ├── lenna_inverse_face.png ├── nuget_package_manager.png └── nuget_package_manager_old.png ├── tutorial-for-windows ├── 01.jpg ├── 02.jpg ├── 03.jpg └── 04.png └── when-error-occurs ├── DllNotFoundException.png └── TargetPlatform.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/docker-appengine.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/docker-appengine.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/docfx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/workflows/docfx.yml -------------------------------------------------------------------------------- /.github/workflows/docker-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/workflows/docker-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docker-ubuntu.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/workflows/docker-ubuntu.yml -------------------------------------------------------------------------------- /.github/workflows/linux-arm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/workflows/linux-arm.yml -------------------------------------------------------------------------------- /.github/workflows/macos10.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/workflows/macos10.yml.disabled -------------------------------------------------------------------------------- /.github/workflows/publish_nuget.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/workflows/publish_nuget.yml -------------------------------------------------------------------------------- /.github/workflows/ubuntu22.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/workflows/ubuntu22.yml -------------------------------------------------------------------------------- /.github/workflows/wasm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/workflows/wasm.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenCvSharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/OpenCvSharp.sln -------------------------------------------------------------------------------- /OpenCvSharp.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/OpenCvSharp.sln.DotSettings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/README.md -------------------------------------------------------------------------------- /docfx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docfx/.gitignore -------------------------------------------------------------------------------- /docfx/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docfx/api/.gitignore -------------------------------------------------------------------------------- /docfx/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docfx/api/index.md -------------------------------------------------------------------------------- /docfx/articles/intro.md: -------------------------------------------------------------------------------- 1 | # Add your introductions here! 2 | -------------------------------------------------------------------------------- /docfx/articles/toc.yml: -------------------------------------------------------------------------------- 1 | - name: Introduction 2 | href: intro.md 3 | -------------------------------------------------------------------------------- /docfx/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docfx/docfx.json -------------------------------------------------------------------------------- /docfx/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docfx/index.md -------------------------------------------------------------------------------- /docfx/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docfx/toc.yml -------------------------------------------------------------------------------- /docker/al2-dotnet5-opencv4.6.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docker/al2-dotnet5-opencv4.6.0/Dockerfile -------------------------------------------------------------------------------- /docker/al2-opencv4.5.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docker/al2-opencv4.5.1/Dockerfile -------------------------------------------------------------------------------- /docker/appengine-aspnetcore3.1-opencv4.5.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docker/appengine-aspnetcore3.1-opencv4.5.1/Dockerfile -------------------------------------------------------------------------------- /docker/command_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docker/command_sample.txt -------------------------------------------------------------------------------- /docker/ubuntu22-dotnet6-opencv4.8.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docker/ubuntu22-dotnet6-opencv4.8.0/Dockerfile -------------------------------------------------------------------------------- /docker/ubuntu22-dotnet6sdk-opencv4.7.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docker/ubuntu22-dotnet6sdk-opencv4.7.0/Dockerfile -------------------------------------------------------------------------------- /docker/ubuntu24-dotnet8-opencv4.12.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/docker/ubuntu24-dotnet8-opencv4.12.0/Dockerfile -------------------------------------------------------------------------------- /download_opencv_windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/download_opencv_windows.ps1 -------------------------------------------------------------------------------- /download_tesseract_windows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/download_tesseract_windows.ps1 -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.Extensions.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.Extensions.nuspec -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.Windows.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.Windows.nuspec -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.WpfExtensions.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.WpfExtensions.nuspec -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.nuspec -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.official.runtime.linux-x64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.official.runtime.linux-x64.csproj -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.official.runtime.linux-x64.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.official.runtime.linux-x64.nuspec -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.runtime.linux-arm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.runtime.linux-arm.csproj -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.runtime.linux-arm.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.runtime.linux-arm.nuspec -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.runtime.osx.10.15-x64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.runtime.osx.10.15-x64.csproj -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.runtime.osx.10.15-x64.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.runtime.osx.10.15-x64.nuspec -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.runtime.uwp.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.runtime.uwp.nuspec -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.runtime.wasm.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.runtime.wasm.csproj -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.runtime.wasm.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.runtime.wasm.nuspec -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.runtime.wasm.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.runtime.wasm.props -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.runtime.win.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.runtime.win.nuspec -------------------------------------------------------------------------------- /nuget/OpenCvSharp4.runtime.win.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/OpenCvSharp4.runtime.win.props -------------------------------------------------------------------------------- /nuget/icon/Girl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/icon/Girl.jpg -------------------------------------------------------------------------------- /nuget/icon/Lenna.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/icon/Lenna.ico -------------------------------------------------------------------------------- /nuget/icon/lenna-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/icon/lenna-icon.png -------------------------------------------------------------------------------- /nuget/icon/mandrill-ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/icon/mandrill-ico.png -------------------------------------------------------------------------------- /nuget/icon/opencvsharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/nuget/icon/opencvsharp.png -------------------------------------------------------------------------------- /src/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/.nuget/packages.config -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/OpenCvSharp.DebuggerVisualizers/ImageViewer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.DebuggerVisualizers/ImageViewer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp.DebuggerVisualizers/ImageViewer.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.DebuggerVisualizers/ImageViewer.designer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp.DebuggerVisualizers/ImageViewer.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.DebuggerVisualizers/ImageViewer.resx -------------------------------------------------------------------------------- /src/OpenCvSharp.DebuggerVisualizers/MatObjectSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.DebuggerVisualizers/MatObjectSource.cs -------------------------------------------------------------------------------- /src/OpenCvSharp.DebuggerVisualizers/MatProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.DebuggerVisualizers/MatProxy.cs -------------------------------------------------------------------------------- /src/OpenCvSharp.DebuggerVisualizers/OpenCvSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.DebuggerVisualizers/OpenCvSharp.dll -------------------------------------------------------------------------------- /src/OpenCvSharp.DebuggerVisualizers/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.DebuggerVisualizers/packages.config -------------------------------------------------------------------------------- /src/OpenCvSharp.Extensions/Binarizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.Extensions/Binarizer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp.Extensions/BitmapConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.Extensions/BitmapConverter.cs -------------------------------------------------------------------------------- /src/OpenCvSharp.Extensions/CvExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.Extensions/CvExtensions.cs -------------------------------------------------------------------------------- /src/OpenCvSharp.Extensions/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.Extensions/Key.snk -------------------------------------------------------------------------------- /src/OpenCvSharp.Extensions/OpenCvSharp.Extensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.Extensions/OpenCvSharp.Extensions.csproj -------------------------------------------------------------------------------- /src/OpenCvSharp.Extensions/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.Extensions/Platform.cs -------------------------------------------------------------------------------- /src/OpenCvSharp.Extensions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.Extensions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/OpenCvSharp.WpfExtensions/BitmapSourceConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.WpfExtensions/BitmapSourceConverter.cs -------------------------------------------------------------------------------- /src/OpenCvSharp.WpfExtensions/OpenCvSharp.WpfExtensions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.WpfExtensions/OpenCvSharp.WpfExtensions.xml -------------------------------------------------------------------------------- /src/OpenCvSharp.WpfExtensions/WriteableBitmapConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp.WpfExtensions/WriteableBitmapConverter.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_calib3d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_calib3d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_core.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_cuda.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_cuda.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_features2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_features2d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_highgui.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_highgui.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_imgcodecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_imgcodecs.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_imgproc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_imgproc.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_objdetect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_objdetect.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_photo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_photo.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_superres.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_superres.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Cv2/Cv2_video.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Cv2/Cv2_video.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Fundamentals/CvObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Fundamentals/CvObject.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Fundamentals/DisposableCvObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Fundamentals/DisposableCvObject.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Fundamentals/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Fundamentals/DisposableObject.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Fundamentals/ICvPtrHolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Fundamentals/ICvPtrHolder.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Fundamentals/MatMemoryManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Fundamentals/MatMemoryManager.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Fundamentals/OpenCVException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Fundamentals/OpenCVException.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Fundamentals/OpenCvSharpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Fundamentals/OpenCvSharpException.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Fundamentals/Ptr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Fundamentals/Ptr.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Fundamentals/ResourcesTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Fundamentals/ResourcesTracker.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/PInvoke/ExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/PInvoke/ExceptionHandler.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/PInvoke/ExceptionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/PInvoke/ExceptionStatus.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/PInvoke/StdString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/PInvoke/StdString.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/PInvoke/Win32API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/PInvoke/Win32API.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/PInvoke/WindowsLibraryLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/PInvoke/WindowsLibraryLoader.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Util/ArrayAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Util/ArrayAddress.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Util/ArrayAddress2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Util/ArrayAddress2.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Util/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Util/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Util/PInvokeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Util/PInvokeHelper.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Util/Platform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Util/Platform.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Util/ReadOnlyArray2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Util/ReadOnlyArray2D.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Util/SaturateCast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Util/SaturateCast.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Util/ScopedGCHandle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Util/ScopedGCHandle.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/IStdVector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/IStdVector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfByte.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfDMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfDMatch.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfDTreesNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfDTreesNode.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfDTreesSplit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfDTreesSplit.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfDouble.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfFloat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfFloat.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfImageFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfImageFeatures.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfInt32.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfKeyLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfKeyLine.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfKeyPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfKeyPoint.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfMat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfMat.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfPoint.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfPoint2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfPoint2d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfPoint2f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfPoint2f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfPoint3f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfPoint3f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfRect.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfRect2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfRect2d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfRotatedRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfRotatedRect.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfString.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVec2f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVec2f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVec3f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVec3f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVec4f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVec4f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVec4i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVec4i.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVec6f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVec6f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVectorByte.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVectorByte.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVectorDMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVectorDMatch.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVectorDouble.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVectorDouble.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVectorInt32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVectorInt32.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVectorKeyLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVectorKeyLine.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVectorKeyPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVectorKeyPoint.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint2f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Internal/Vectors/VectorOfVectorPoint2f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Key.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Key.snk -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/aruco/CvAruco.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/aruco/CvAruco.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/aruco/DetectorParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/aruco/DetectorParameters.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/aruco/Dictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/aruco/Dictionary.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/aruco/Enum/CornerRefineMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/aruco/Enum/CornerRefineMethod.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/bgsegm/BackgroundSubtractorGMG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/bgsegm/BackgroundSubtractorGMG.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/bgsegm/BackgroundSubtractorMOG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/bgsegm/BackgroundSubtractorMOG.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/calib3d/Enum/CalibrationFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/calib3d/Enum/CalibrationFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/calib3d/Enum/ChessboardFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/calib3d/Enum/ChessboardFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/calib3d/Enum/EssentialMatMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/calib3d/Enum/EssentialMatMethod.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/calib3d/Enum/HomographyMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/calib3d/Enum/HomographyMethods.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/calib3d/Enum/ProjectionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/calib3d/Enum/ProjectionType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/calib3d/Enum/SolvePnPFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/calib3d/Enum/SolvePnPFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/calib3d/StereoBM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/calib3d/StereoBM.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/calib3d/StereoMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/calib3d/StereoMatcher.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/calib3d/StereoSGBM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/calib3d/StereoSGBM.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/calib3d/UsacParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/calib3d/UsacParams.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Algorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Algorithm.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Delegate/CvErrorCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Delegate/CvErrorCallback.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Delegate/MatForeachFunction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Delegate/MatForeachFunction.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/AccessFlag.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/AccessFlag.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/AlgorithmParamType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/AlgorithmParamType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/BorderTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/BorderTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/CmpType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/CmpType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/CovarFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/CovarFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/CpuFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/CpuFeatures.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/CriteriaTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/CriteriaTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/DctFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/DctFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/DecompTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/DecompTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/DftFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/DftFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/DistributionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/DistributionType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/ErrorCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/ErrorCode.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/FormatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/FormatType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/GemmFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/GemmFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/HersheyFonts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/HersheyFonts.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/InOutArrayKind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/InOutArrayKind.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/KMeansFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/KMeansFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/LogLevel.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/MatDiagType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/MatDiagType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/NormTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/NormTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/ReduceDimension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/ReduceDimension.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/ReduceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/ReduceTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/RotateFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/RotateFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/SolveLPResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/SolveLPResult.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/SortFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/SortFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Enum/UMatUsageFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Enum/UMatUsageFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/FileNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/FileNode.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/FileNodeIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/FileNodeIterator.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/FileStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/FileStorage.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/InputArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/InputArray.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/InputOutputArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/InputOutputArray.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/LDA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/LDA.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Mat/Mat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Mat/Mat.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Mat/MatIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Mat/MatIndexer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Mat/MatOfT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Mat/MatOfT.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Mat/MatPinning.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Mat/MatPinning.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Mat/Mat_CvMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Mat/Mat_CvMethods.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Mat/UMat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Mat/UMat.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/MatExpr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/MatExpr.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/MatExprRowColIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/MatExprRowColIndexer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/MatExpr_CvMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/MatExpr_CvMethods.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/OutputArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/OutputArray.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/OutputArrayOfMatList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/OutputArrayOfMatList.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/OutputArrayOfStructList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/OutputArrayOfStructList.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/PCA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/PCA.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/RNG.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/RNG.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/RNG_MT19937.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/RNG_MT19937.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/SVD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/SVD.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/SparseMat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/SparseMat.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/SparseMatIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/SparseMatIndexer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/DMatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/DMatch.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/KeyPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/KeyPoint.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/MatType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/MatType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Point.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Point2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Point2d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Point2f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Point2f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Point3d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Point3d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Point3f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Point3f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Point3i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Point3i.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Range.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Range.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Rangef.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Rangef.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Rect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Rect.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Rect2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Rect2d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Rect2f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Rect2f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/RotatedRect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/RotatedRect.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Scalar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Scalar.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Size.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Size.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Size2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Size2d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Size2f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Size2f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/TermCriteria.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/TermCriteria.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/IVec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/IVec.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec2b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec2b.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec2d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec2d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec2f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec2f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec2i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec2i.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec2s.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec2s.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec2w.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec2w.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec3b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec3b.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec3d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec3d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec3f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec3f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec3i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec3i.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec3s.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec3s.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec3w.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec3w.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec4b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec4b.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec4d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec4d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec4f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec4f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec4i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec4i.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec4s.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec4s.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec4w.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec4w.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec6b.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec6b.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec6d.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec6d.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec6f.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec6f.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec6i.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec6i.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec6s.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec6s.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/core/Struct/Vec/Vec6w.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/core/Struct/Vec/Vec6w.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/cuda/DescriptorFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/cuda/DescriptorFormat.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/cuda/DeviceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/cuda/DeviceInfo.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/cuda/DisposableGpuObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/cuda/DisposableGpuObject.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/cuda/Enum/CudaMemAllocType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/cuda/Enum/CudaMemAllocType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/cuda/Enum/FeatureSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/cuda/Enum/FeatureSet.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/cuda/GpuMat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/cuda/GpuMat.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/cuda/GpuMatIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/cuda/GpuMatIndexer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/cuda/GpuMatRowColIndexer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/cuda/GpuMatRowColIndexer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/cuda/Stream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/cuda/Stream.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/dnn/Backend.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/dnn/Backend.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/dnn/CvDnn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/dnn/CvDnn.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/dnn/Net.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/dnn/Net.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/dnn/Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/dnn/Target.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/dnn_superres/DnnSuperResImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/dnn_superres/DnnSuperResImpl.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/face/Facemark/Facemark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/face/Facemark/Facemark.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/face/Facemark/FacemarkAAM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/face/Facemark/FacemarkAAM.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/face/Facemark/FacemarkLBF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/face/Facemark/FacemarkLBF.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/AKAZE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/AKAZE.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/AgastFeatureDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/AgastFeatureDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/BFMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/BFMatcher.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/BOWKMeansTrainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/BOWKMeansTrainer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/BOWTrainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/BOWTrainer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/BRISK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/BRISK.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/DenseFeatureDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/DenseFeatureDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/DescriptorMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/DescriptorMatcher.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/Enum/DrawMatchesFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/Enum/DrawMatchesFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/Enum/FASTType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/Enum/FASTType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/Enum/ORBScoreType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/Enum/ORBScoreType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/FastFeatureDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/FastFeatureDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/Feature2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/Feature2D.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/FlannBasedMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/FlannBasedMatcher.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/GFTTDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/GFTTDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/KAZE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/KAZE.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/KeyPointsFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/KeyPointsFilter.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/MSER.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/MSER.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/ORB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/ORB.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/SIFT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/SIFT.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/features2d/SimpleBlobDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/features2d/SimpleBlobDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/flann/FlannCentersInit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/flann/FlannCentersInit.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/flann/FlannDistance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/flann/FlannDistance.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/flann/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/flann/Index.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/flann/IndexParams/IndexParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/flann/IndexParams/IndexParams.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/flann/IndexParams/LshIndexParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/flann/IndexParams/LshIndexParams.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/flann/IndexParams/SearchParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/flann/IndexParams/SearchParams.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/highgui/CvTrackbar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/highgui/CvTrackbar.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/highgui/Enum/ButtonType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/highgui/Enum/ButtonType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/highgui/Enum/MouseEventFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/highgui/Enum/MouseEventFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/highgui/Enum/MouseEventTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/highgui/Enum/MouseEventTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/highgui/Enum/WindowFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/highgui/Enum/WindowFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/highgui/Enum/WindowPropertyFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/highgui/Enum/WindowPropertyFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/highgui/MouseCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/highgui/MouseCallback.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/highgui/TrackbarCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/highgui/TrackbarCallback.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/highgui/Window.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/highgui/Window.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/img_hash/AverageHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/img_hash/AverageHash.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/img_hash/BlockMeanHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/img_hash/BlockMeanHash.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/img_hash/ColorMomentHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/img_hash/ColorMomentHash.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/img_hash/Enum/BlockMeanHashMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/img_hash/Enum/BlockMeanHashMode.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/img_hash/ImgHashBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/img_hash/ImgHashBase.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/img_hash/MarrHildrethHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/img_hash/MarrHildrethHash.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/img_hash/PHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/img_hash/PHash.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/img_hash/RadialVarianceHash.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/img_hash/RadialVarianceHash.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgcodecs/Enum/ConvertImageModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgcodecs/Enum/ConvertImageModes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgcodecs/Enum/ImreadModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgcodecs/Enum/ImreadModes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgcodecs/Enum/ImwriteFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgcodecs/Enum/ImwriteFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgcodecs/Enum/ImwritePAMFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgcodecs/Enum/ImwritePAMFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgcodecs/Enum/ImwritePNGFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgcodecs/Enum/ImwritePNGFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgcodecs/ImageEncodingParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgcodecs/ImageEncodingParam.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/CLAHE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/CLAHE.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/ConnectedComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/ConnectedComponent.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/ColormapTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/ColormapTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/DistanceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/DistanceTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/FlipMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/FlipMode.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/FloodFillFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/FloodFillFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/GrabCutClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/GrabCutClasses.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/GrabCutModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/GrabCutModes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/HistCompMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/HistCompMethods.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/HoughModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/HoughModes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/InterpolationFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/InterpolationFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/LineTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/LineTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/MarkerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/MarkerTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/MorphShapes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/MorphShapes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/MorphTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/MorphTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/PixelConnectivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/PixelConnectivity.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/RetrievalModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/RetrievalModes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/ShapeMatchModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/ShapeMatchModes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/TemplateMatchModes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/TemplateMatchModes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/ThresholdTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/ThresholdTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Enum/WarpPolarMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Enum/WarpPolarMode.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/GeneralizedHough.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/GeneralizedHough.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/GeneralizedHoughBallard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/GeneralizedHoughBallard.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/GeneralizedHoughGuil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/GeneralizedHoughGuil.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/IntelligentScissorsMB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/IntelligentScissorsMB.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/LineIterator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/LineIterator.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/LineSegmentDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/LineSegmentDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Model/CircleSegment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Model/CircleSegment.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Model/HierarchyIndex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Model/HierarchyIndex.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Model/Line2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Model/Line2D.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Model/Line3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Model/Line3D.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Model/LineSegmentPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Model/LineSegmentPoint.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Model/LineSegmentPolar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Model/LineSegmentPolar.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Moments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Moments.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/imgproc/Subdiv2D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/imgproc/Subdiv2D.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/line_descriptors/KeyLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/line_descriptors/KeyLine.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/line_descriptors/LSDDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/line_descriptors/LSDDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/line_descriptors/LSDParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/line_descriptors/LSDParam.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/ANN_MLP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/ANN_MLP.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/Boost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/Boost.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/DTrees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/DTrees.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/EM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/EM.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/Enum/SampleTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/Enum/SampleTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/KNearest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/KNearest.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/LogisticRegression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/LogisticRegression.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/NormalBayesClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/NormalBayesClassifier.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/ParamGrid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/ParamGrid.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/RTrees.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/RTrees.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/SVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/SVM.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/StatModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/StatModel.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ml/TrainData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ml/TrainData.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/objdetect/CascadeClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/objdetect/CascadeClassifier.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/objdetect/HOGDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/objdetect/HOGDescriptor.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/objdetect/HistogramNormType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/objdetect/HistogramNormType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/objdetect/QRCodeDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/objdetect/QRCodeDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/objdetect/SimilarRects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/objdetect/SimilarRects.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/optflow/CvOptFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/optflow/CvOptFlow.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/CalibrateCRF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/CalibrateCRF.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/CalibrateDebevec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/CalibrateDebevec.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/CalibrateRobertson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/CalibrateRobertson.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/EdgePreservingMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/EdgePreservingMethods.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/InpaintMethod.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/InpaintMethod.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/MergeDebevec.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/MergeDebevec.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/MergeExposures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/MergeExposures.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/MergeMertens.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/MergeMertens.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/SeamlessCloneMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/SeamlessCloneMethods.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/Tonemap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/Tonemap.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/TonemapDrago.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/TonemapDrago.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/TonemapMantiuk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/TonemapMantiuk.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/photo/TonemapReinhard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/photo/TonemapReinhard.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/quality/QualityBRISQUE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/quality/QualityBRISQUE.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/quality/QualityBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/quality/QualityBase.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/quality/QualityGMSD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/quality/QualityGMSD.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/quality/QualityMSE.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/quality/QualityMSE.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/quality/QualityPSNR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/quality/QualityPSNR.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/quality/QualitySSIM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/quality/QualitySSIM.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/shape/ShapeDistanceExtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/shape/ShapeDistanceExtractor.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/stitching/CvDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/stitching/CvDetail.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/stitching/FeaturesMatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/stitching/FeaturesMatcher.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/stitching/ImageFeatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/stitching/ImageFeatures.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/stitching/MatchesInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/stitching/MatchesInfo.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/stitching/Stitcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/stitching/Stitcher.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/superres/BroxOpticalFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/superres/BroxOpticalFlow.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/superres/DenseOpticalFlowExt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/superres/DenseOpticalFlowExt.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/superres/DualTVL1OpticalFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/superres/DualTVL1OpticalFlow.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/superres/FarnebackOpticalFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/superres/FarnebackOpticalFlow.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/superres/FrameSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/superres/FrameSource.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/superres/PyrLKOpticalFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/superres/PyrLKOpticalFlow.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/superres/SuperResolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/superres/SuperResolution.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/text/BaseOCR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/text/BaseOCR.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/text/ComponentLevels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/text/ComponentLevels.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/text/CvText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/text/CvText.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/text/OCRTesseract.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/text/OCRTesseract.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/text/TextDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/text/TextDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/text/TextDetectorCNN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/text/TextDetectorCNN.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/tracking/Enum/TrackerTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/tracking/Enum/TrackerTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/tracking/TrackerCSRT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/tracking/TrackerCSRT.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/tracking/TrackerKCF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/tracking/TrackerKCF.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/video/BackgroundSubtractor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/video/BackgroundSubtractor.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/video/BackgroundSubtractorKNN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/video/BackgroundSubtractorKNN.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/video/BackgroundSubtractorMog2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/video/BackgroundSubtractorMog2.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/video/Enum/MotionTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/video/Enum/MotionTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/video/Enum/OpticalFlowFlags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/video/Enum/OpticalFlowFlags.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/video/KalmanFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/video/KalmanFilter.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/video/Tracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/video/Tracker.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/video/TrackerGOTURN.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/video/TrackerGOTURN.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/video/TrackerMIL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/video/TrackerMIL.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/videoio/Enum/CameraChannels.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/videoio/Enum/CameraChannels.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/videoio/Enum/CapturePosRatio.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/videoio/Enum/CapturePosRatio.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/videoio/Enum/CaptureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/videoio/Enum/CaptureType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/videoio/Enum/VideoCaptureAPIs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/videoio/Enum/VideoCaptureAPIs.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/videoio/Enum/VideoCapturePara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/videoio/Enum/VideoCapturePara.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/videoio/Enum/VideoWriterPara.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/videoio/Enum/VideoWriterPara.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/videoio/FourCC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/videoio/FourCC.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/videoio/VideoCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/videoio/VideoCapture.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/videoio/VideoWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/videoio/VideoWriter.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/wechat_qrcode/WeChatQRCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/wechat_qrcode/WeChatQRCode.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xfeatures2d/FREAK.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xfeatures2d/FREAK.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xfeatures2d/LATCH.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xfeatures2d/LATCH.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xfeatures2d/LUCID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xfeatures2d/LUCID.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xfeatures2d/SURF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xfeatures2d/SURF.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xfeatures2d/StarDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xfeatures2d/StarDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/CvXImgProc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/CvXImgProc.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/EdgeBoxes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/EdgeBoxes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/EdgeFilter/DTFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/EdgeFilter/DTFilter.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/Enum/AngleRangeOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/Enum/AngleRangeOption.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/Enum/HoughOP.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/Enum/HoughOP.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/Enum/RulesOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/Enum/RulesOption.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/Enum/SLICType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/Enum/SLICType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/Enum/ThinningTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/Enum/ThinningTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/Enum/WMFWeightType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/Enum/WMFWeightType.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/FastLineDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/FastLineDetector.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/RFFeatureGetter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/RFFeatureGetter.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/ximgproc/RidgeDetectionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/ximgproc/RidgeDetectionFilter.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xphoto/CvXPhoto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xphoto/CvXPhoto.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xphoto/Enum/Bm3dSteps.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xphoto/Enum/Bm3dSteps.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xphoto/Enum/InpaintTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xphoto/Enum/InpaintTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xphoto/Enum/TransformTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xphoto/Enum/TransformTypes.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xphoto/GrayworldWB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xphoto/GrayworldWB.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xphoto/LearningBasedWB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xphoto/LearningBasedWB.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xphoto/SimpleWB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xphoto/SimpleWB.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xphoto/TonemapDurand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xphoto/TonemapDurand.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/Modules/xphoto/WhiteBalancer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Modules/xphoto/WhiteBalancer.cs -------------------------------------------------------------------------------- /src/OpenCvSharp/OpenCvSharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/OpenCvSharp.csproj -------------------------------------------------------------------------------- /src/OpenCvSharp/OpenCvSharp.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/OpenCvSharp.dll.config -------------------------------------------------------------------------------- /src/OpenCvSharp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/CMakeLists.txt -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/OpenCvSharpExtern.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/OpenCvSharpExtern.vcxproj -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/OpenCvSharpExtern.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/OpenCvSharpExtern.vcxproj.filters -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/aruco.cpp: -------------------------------------------------------------------------------- 1 | #include "aruco.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/aruco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/aruco.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/bgsegm.cpp: -------------------------------------------------------------------------------- 1 | #include "bgsegm.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/bgsegm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/bgsegm.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/calib3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/calib3d.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/calib3d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/calib3d.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/calib3d_StereoMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/calib3d_StereoMatcher.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/calib3d_fisheye.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/calib3d_fisheye.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_Algorithm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_Algorithm.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_FileNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_FileNode.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_FileStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_FileStorage.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_InputArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_InputArray.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_LDA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_LDA.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_Mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_Mat.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_MatExpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_MatExpr.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_OutputArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_OutputArray.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_PCA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_PCA.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_SVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_SVD.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_SparseMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_SparseMat.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/core_UMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/core_UMat.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/cuda.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/cuda.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/cuda_GpuMat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/cuda_GpuMat.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/dnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/dnn.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/dnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/dnn.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/dnn_Net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/dnn_Net.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/dnn_superres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/dnn_superres.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/dnn_superres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/dnn_superres.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/face.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/face_FaceRecognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/face_FaceRecognizer.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/face_Facemark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/face_Facemark.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/features2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/features2d.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/features2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/features2d.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/features2d_BOW.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/features2d_BOW.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/features2d_DescriptorMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/features2d_DescriptorMatcher.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/features2d_Feature2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/features2d_Feature2D.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/flann.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/flann.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/flann.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/flann.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/flann_IndexParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/flann_IndexParams.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/highgui.cpp: -------------------------------------------------------------------------------- 1 | #include "highgui.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/highgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/highgui.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/img_hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/img_hash.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/img_hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/img_hash.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/imgcodecs.cpp: -------------------------------------------------------------------------------- 1 | #include "imgcodecs.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/imgcodecs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/imgcodecs.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/imgproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/imgproc.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/imgproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/imgproc.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/imgproc_CLAHE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/imgproc_CLAHE.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/imgproc_GeneralizedHough.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/imgproc_GeneralizedHough.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/imgproc_LineIterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/imgproc_LineIterator.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/imgproc_LineSegmentDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/imgproc_LineSegmentDetector.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/imgproc_Segmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/imgproc_Segmentation.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/imgproc_Subdiv2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/imgproc_Subdiv2D.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/include_opencv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/include_opencv.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/line_descriptor.cpp: -------------------------------------------------------------------------------- 1 | #include "line_descriptor.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/line_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/line_descriptor.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml_ANN_MLP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml_ANN_MLP.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml_Boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml_Boost.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml_DTrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml_DTrees.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml_EM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml_EM.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml_KNearest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml_KNearest.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml_LogisticRegression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml_LogisticRegression.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml_NormalBayesClassifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml_NormalBayesClassifier.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml_RTrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml_RTrees.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml_SVM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml_SVM.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ml_StatModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ml_StatModel.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/my_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/my_functions.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/my_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/my_types.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/objdetect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/objdetect.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/objdetect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/objdetect.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/objdetect_HOGDescriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/objdetect_HOGDescriptor.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/objdetect_QRCodeDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/objdetect_QRCodeDetector.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/optflow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/optflow.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/optflow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/optflow.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/optflow_motempl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/optflow_motempl.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/photo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/photo.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/photo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/photo.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/photo_HDR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/photo_HDR.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/photo_Tonemap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/photo_Tonemap.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/quality.cpp: -------------------------------------------------------------------------------- 1 | #include "quality.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/quality.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/quality.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/shape.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/shape.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/shape_ShapeDistanceExtractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/shape_ShapeDistanceExtractor.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/std_string.cpp: -------------------------------------------------------------------------------- 1 | #include "std_string.h" 2 | -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/std_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/std_string.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/std_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/std_vector.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/std_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/std_vector.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/std_vector_nesting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/std_vector_nesting.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/std_vector_primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/std_vector_primitive.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/stitching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/stitching.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/stitching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/stitching.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/stitching_detail_Matchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/stitching_detail_Matchers.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/superres.cpp: -------------------------------------------------------------------------------- 1 | #include "superres.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/superres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/superres.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/text.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/text.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/text_TextDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/text_TextDetector.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/tracking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/tracking.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/tracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/tracking.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/tracking_UnscentedKalmanFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/tracking_UnscentedKalmanFilter.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/video.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/video.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/video.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/video_background_segm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/video_background_segm.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/video_tracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/video_tracking.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/videoio.cpp: -------------------------------------------------------------------------------- 1 | #include "videoio.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/videoio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/videoio.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/wechat_qrcode.cpp: -------------------------------------------------------------------------------- 1 | #include "wechat_qrcode.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/wechat_qrcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/wechat_qrcode.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/xfeatures2d.cpp: -------------------------------------------------------------------------------- 1 | #include "xfeatures2d.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/xfeatures2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/xfeatures2d.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ximgproc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ximgproc.cpp -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ximgproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ximgproc.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ximgproc_EdgeBoxes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ximgproc_EdgeBoxes.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ximgproc_EdgeFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ximgproc_EdgeFilter.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ximgproc_FastLineDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ximgproc_FastLineDetector.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ximgproc_RidgeDetectionFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ximgproc_RidgeDetectionFilter.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ximgproc_Segmentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ximgproc_Segmentation.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ximgproc_StructuredEdgeDetection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ximgproc_StructuredEdgeDetection.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/ximgproc_SuperPixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/ximgproc_SuperPixel.h -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/xphoto.cpp: -------------------------------------------------------------------------------- 1 | #include "xphoto.h" -------------------------------------------------------------------------------- /src/OpenCvSharpExtern/xphoto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/OpenCvSharpExtern/xphoto.h -------------------------------------------------------------------------------- /src/uwpOpenCvSharpExtern/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /src/uwpOpenCvSharpExtern/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/uwpOpenCvSharpExtern/pch.h -------------------------------------------------------------------------------- /src/uwpOpenCvSharpExtern/uwpOpenCvSharpExtern.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/src/uwpOpenCvSharpExtern/uwpOpenCvSharpExtern.vcxproj -------------------------------------------------------------------------------- /test/OpenCvSharp.DebuggerVisualizers.Tester/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.DebuggerVisualizers.Tester/App.config -------------------------------------------------------------------------------- /test/OpenCvSharp.DebuggerVisualizers.Tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.DebuggerVisualizers.Tester/Program.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests.Windows/BitmapConverterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests.Windows/BitmapConverterTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/DoubleEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/DoubleEqualityComparer.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ExplicitFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ExplicitFactAttribute.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ExplicitTheoryAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ExplicitTheoryAttribute.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/FileDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/FileDownloader.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/OpenCvSharp.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/OpenCvSharp.Tests.csproj -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/PlatformSpecificFactAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/PlatformSpecificFactAttribute.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/TestBase.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/aruco/Dict6X6_1000.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/aruco/Dict6X6_1000.yaml -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/8bpp_indexed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/8bpp_indexed.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/Dnn/MNIST_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/Dnn/MNIST_5.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/Dnn/MNIST_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/Dnn/MNIST_9.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/ETHZ/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/ETHZ/Readme.md -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/abbey_road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/abbey_road.jpg -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/alphabet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/alphabet.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/blob/shapes1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/blob/shapes1.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/blob/shapes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/blob/shapes2.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/blob/shapes3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/blob/shapes3.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/building.jpg -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/building_mask.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/building_mask.bmp -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/calibration/00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/calibration/00.jpg -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/empty.gif -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/houghp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/houghp.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/imageText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/imageText.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/imageTextR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/imageTextR.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/issue/821.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/issue/821.jpg -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/lenna.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/mandrill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/mandrill.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/markers_6x6_250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/markers_6x6_250.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/multipage_p1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/multipage_p1.tif -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/multipage_p2.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/multipage_p2.tif -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/peilin_plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/peilin_plane.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/qr.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/qr_multi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/qr_multi.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/space_shuttle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/space_shuttle.jpg -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/tsukuba_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/tsukuba_left.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/image/tsukuba_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/image/tsukuba_right.png -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/model/FSRCNN_x4.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/model/FSRCNN_x4.pb -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/api_config: -------------------------------------------------------------------------------- 1 | tessedit_zero_rejection T 2 | -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/bigram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/configs/bigram -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/box.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/configs/box.train -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/digits: -------------------------------------------------------------------------------- 1 | tessedit_char_whitelist 0123456789-. 2 | -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/hocr: -------------------------------------------------------------------------------- 1 | tessedit_create_hocr 1 -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/inter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/configs/inter -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/kannada: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/configs/kannada -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/linebox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/configs/linebox -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/logfile: -------------------------------------------------------------------------------- 1 | debug_file tesseract.log 2 | -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/makebox: -------------------------------------------------------------------------------- 1 | tessedit_create_boxfile 1 2 | -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/quiet: -------------------------------------------------------------------------------- 1 | debug_file /dev/null 2 | -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/rebox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/configs/rebox -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/strokewidth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/configs/strokewidth -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/configs/unlv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/configs/unlv -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/eng.traineddata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/eng.traineddata -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/pdf.ttf: -------------------------------------------------------------------------------- 1 | tessconfigs/pdf.ttf -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/tessconfigs/batch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/tessconfigs/batch -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/tessconfigs/matdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/tessconfigs/matdemo -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/tessconfigs/msdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/tessconfigs/msdemo -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/tessconfigs/nobatch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/tessdata/tessconfigs/segdemo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/tessdata/tessconfigs/segdemo -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/text/brisque_model_live.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/text/brisque_model_live.yml -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/text/brisque_range_live.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/text/brisque_range_live.yml -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/text/bvlc_googlenet.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/text/bvlc_googlenet.prototxt -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/text/synset_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/text/synset_words.txt -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/text/textbox.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/text/textbox.prototxt -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/wechat_qrcode/sr.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/wechat_qrcode/sr.caffemodel -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/_data/wechat_qrcode/sr.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/_data/wechat_qrcode/sr.prototxt -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/aruco/ArucoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/aruco/ArucoTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/calib3d/Calib3dTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/calib3d/Calib3dTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/calib3d/StereoBMTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/calib3d/StereoBMTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/calib3d/StereoSGBMTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/calib3d/StereoSGBMTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/AlgorithmTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/AlgorithmTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/CoreTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/CoreTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/FileStorageTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/FileStorageTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/LDATest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/LDATest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/MatExprTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/MatExprTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/MatTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/MatTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/MatTypeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/MatTypeTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/RNGTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/RNGTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/RNG_MT19937Test.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/RNG_MT19937Test.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/Rect2dTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/Rect2dTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/Rect2fTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/Rect2fTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/RectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/RectTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/RotatedRectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/RotatedRectTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/ScalarTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/ScalarTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/SizeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/SizeTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/SolveEquationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/SolveEquationTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/SparseMatTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/SparseMatTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/UMatTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/UMatTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/UtilityTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/UtilityTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/core/VecTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/core/VecTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/dll/x64/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/dll/x86/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/dnn/CaffeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/dnn/CaffeTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/dnn/DnnDataFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/dnn/DnnDataFixture.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/dnn/DnnTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/dnn/DnnTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/dnn/EastTextDetectionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/dnn/EastTextDetectionTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/dnn/ModelDownloader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/dnn/ModelDownloader.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/dnn/NetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/dnn/NetTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/dnn/TensorflowTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/dnn/TensorflowTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/dnn/YoloTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/dnn/YoloTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/face/FacemarkAAMTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/face/FacemarkAAMTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/face/FacemarkLBFTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/face/FacemarkLBFTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/face/LBPHFaceRecognizerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/face/LBPHFaceRecognizerTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/features2d/BOWKMeansTrainerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/features2d/BOWKMeansTrainerTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/features2d/ORBTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/features2d/ORBTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/features2d/SIFTTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/features2d/SIFTTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/highgui/HighGuiTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/highgui/HighGuiTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/highgui/TrackbarTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/highgui/TrackbarTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/img_hash/AverageHashTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/img_hash/AverageHashTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/img_hash/BlockMeanHashTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/img_hash/BlockMeanHashTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/img_hash/ColorMomentHashTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/img_hash/ColorMomentHashTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/img_hash/MarrHildrethHashTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/img_hash/MarrHildrethHashTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/img_hash/PHashTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/img_hash/PHashTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/img_hash/RadialVarianceHashTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/img_hash/RadialVarianceHashTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/imgcodecs/ImgCodecsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/imgcodecs/ImgCodecsTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/imgproc/CLAHETest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/imgproc/CLAHETest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/imgproc/ConnectedComponentsTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/imgproc/ConnectedComponentsTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/imgproc/ImgProcTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/imgproc/ImgProcTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/imgproc/LineIteratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/imgproc/LineIteratorTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/imgproc/Subdiv2DTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/imgproc/Subdiv2DTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/line_descriptor/LSDDetectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/line_descriptor/LSDDetectorTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ml/ANN_MLPTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ml/ANN_MLPTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ml/BoostTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ml/BoostTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ml/EMTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ml/EMTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ml/KNearestTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ml/KNearestTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ml/RTreesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ml/RTreesTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ml/SVMTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ml/SVMTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/objdetect/HOGDescriptorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/objdetect/HOGDescriptorTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/objdetect/QRCodeDetectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/objdetect/QRCodeDetectorTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/photo/PhotoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/photo/PhotoTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/photo/TonemapDragoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/photo/TonemapDragoTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/photo/TonemapMantiukTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/photo/TonemapMantiukTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/photo/TonemapReinhardTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/photo/TonemapReinhardTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/photo/TonemapTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/photo/TonemapTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/quality/QualityBRISQUETest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/quality/QualityBRISQUETest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/quality/QualityGMSDTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/quality/QualityGMSDTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/quality/QualityMSETest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/quality/QualityMSETest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/quality/QualityPSNRTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/quality/QualityPSNRTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/quality/QualitySSIMTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/quality/QualitySSIMTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/stitching/CvDetailTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/stitching/CvDetailTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/stitching/StitchingTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/stitching/StitchingTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/system/AppDomainTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/system/AppDomainTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/system/ExceptionTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/system/ExceptionTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/system/SaturateCastTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/system/SaturateCastTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/system/StdStringTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/system/StdStringTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/system/VectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/system/VectorTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/system/WindowsLibraryLoaderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/system/WindowsLibraryLoaderTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/text/DetectTextSWTTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/text/DetectTextSWTTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/text/OCRTesseractTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/text/OCRTesseractTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/text/TextDetectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/text/TextDetectorTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/tracking/TrackerCSRTTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/tracking/TrackerCSRTTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/tracking/TrackerGOTURNTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/tracking/TrackerGOTURNTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/tracking/TrackerKCFTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/tracking/TrackerKCFTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/tracking/TrackerMILTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/tracking/TrackerMILTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/tracking/TrackerTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/tracking/TrackerTestBase.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/video/KalmanTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/video/KalmanTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/videoio/VideoCaptureTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/videoio/VideoCaptureTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/videoio/VideoWriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/videoio/VideoWriterTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/wechat_qrcode/WeChatQRCodeTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/wechat_qrcode/WeChatQRCodeTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/xfeatures2d/LATCHTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/xfeatures2d/LATCHTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/xfeatures2d/LUCIDTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/xfeatures2d/LUCIDTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/xfeatures2d/SURFTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/xfeatures2d/SURFTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ximgproc/EdgeBoxesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ximgproc/EdgeBoxesTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ximgproc/EdgeFilterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ximgproc/EdgeFilterTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ximgproc/FastHoughTransformTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ximgproc/FastHoughTransformTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ximgproc/FastLineDetectorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ximgproc/FastLineDetectorTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ximgproc/SuperpixelTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ximgproc/SuperpixelTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/ximgproc/XimgProcTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/ximgproc/XimgProcTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/xphoto/TonemapDurandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/xphoto/TonemapDurandTest.cs -------------------------------------------------------------------------------- /test/OpenCvSharp.Tests/xphoto/XPhotoTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/test/OpenCvSharp.Tests/xphoto/XPhotoTest.cs -------------------------------------------------------------------------------- /tool/OpenCvSharp.NupkgBetaRemover/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/tool/OpenCvSharp.NupkgBetaRemover/App.config -------------------------------------------------------------------------------- /tool/OpenCvSharp.NupkgBetaRemover/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/tool/OpenCvSharp.NupkgBetaRemover/Program.cs -------------------------------------------------------------------------------- /tool/OpenCvSharp.ReleaseMaker/Packer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/tool/OpenCvSharp.ReleaseMaker/Packer.cs -------------------------------------------------------------------------------- /tool/OpenCvSharp.ReleaseMaker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/tool/OpenCvSharp.ReleaseMaker/Program.cs -------------------------------------------------------------------------------- /web/img/cpp_histogram/grayscale_histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/cpp_histogram/grayscale_histogram.png -------------------------------------------------------------------------------- /web/img/cpp_histogram/lenna_grayscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/cpp_histogram/lenna_grayscale.png -------------------------------------------------------------------------------- /web/img/debugger-visualizer/cvmat_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/debugger-visualizer/cvmat_1.png -------------------------------------------------------------------------------- /web/img/debugger-visualizer/iplimage_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/debugger-visualizer/iplimage_1.png -------------------------------------------------------------------------------- /web/img/debugger-visualizer/iplimage_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/debugger-visualizer/iplimage_2.png -------------------------------------------------------------------------------- /web/img/how-to-install-via-nuget/lenna_inverse_face.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/how-to-install-via-nuget/lenna_inverse_face.png -------------------------------------------------------------------------------- /web/img/tutorial-for-windows/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/tutorial-for-windows/01.jpg -------------------------------------------------------------------------------- /web/img/tutorial-for-windows/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/tutorial-for-windows/02.jpg -------------------------------------------------------------------------------- /web/img/tutorial-for-windows/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/tutorial-for-windows/03.jpg -------------------------------------------------------------------------------- /web/img/tutorial-for-windows/04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/tutorial-for-windows/04.png -------------------------------------------------------------------------------- /web/img/when-error-occurs/DllNotFoundException.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/when-error-occurs/DllNotFoundException.png -------------------------------------------------------------------------------- /web/img/when-error-occurs/TargetPlatform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shimat/opencvsharp/HEAD/web/img/when-error-occurs/TargetPlatform.png --------------------------------------------------------------------------------