├── .gitignore ├── .vs └── OpenCVSharpDemo │ └── v16 │ ├── .suo │ └── Server │ └── sqlite3 │ ├── db.lock │ ├── storage.ide │ ├── storage.ide-shm │ └── storage.ide-wal ├── OpenCVSharpDemo.sln ├── OpenCVSharpDemo ├── .gitignore ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── OpenCVSharpDemo.csproj ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── packages.config └── test.png └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | packages/ 2 | -------------------------------------------------------------------------------- /.vs/OpenCVSharpDemo/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/.vs/OpenCVSharpDemo/v16/.suo -------------------------------------------------------------------------------- /.vs/OpenCVSharpDemo/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/OpenCVSharpDemo/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/.vs/OpenCVSharpDemo/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/OpenCVSharpDemo/v16/Server/sqlite3/storage.ide-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/.vs/OpenCVSharpDemo/v16/Server/sqlite3/storage.ide-shm -------------------------------------------------------------------------------- /.vs/OpenCVSharpDemo/v16/Server/sqlite3/storage.ide-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/.vs/OpenCVSharpDemo/v16/Server/sqlite3/storage.ide-wal -------------------------------------------------------------------------------- /OpenCVSharpDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo.sln -------------------------------------------------------------------------------- /OpenCVSharpDemo/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | -------------------------------------------------------------------------------- /OpenCVSharpDemo/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/Form1.Designer.cs -------------------------------------------------------------------------------- /OpenCVSharpDemo/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/Form1.cs -------------------------------------------------------------------------------- /OpenCVSharpDemo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/Form1.resx -------------------------------------------------------------------------------- /OpenCVSharpDemo/OpenCVSharpDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/OpenCVSharpDemo.csproj -------------------------------------------------------------------------------- /OpenCVSharpDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/Program.cs -------------------------------------------------------------------------------- /OpenCVSharpDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /OpenCVSharpDemo/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /OpenCVSharpDemo/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/Properties/Resources.resx -------------------------------------------------------------------------------- /OpenCVSharpDemo/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /OpenCVSharpDemo/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/Properties/Settings.settings -------------------------------------------------------------------------------- /OpenCVSharpDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/packages.config -------------------------------------------------------------------------------- /OpenCVSharpDemo/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/OpenCVSharpDemo/test.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsnjfz/OpenCVSharpDemo/HEAD/README.md --------------------------------------------------------------------------------