├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── YOLOv4MLNet.sln └── YOLOv4MLNet ├── Assets ├── Images │ ├── cars road.jpg │ ├── dog_cat.jpg │ ├── kite.jpg │ ├── kite_416.jpg │ ├── ski.jpg │ └── ski2.jpg └── Output │ ├── cars road._processed.jpg │ ├── dog_cat._processed.jpg │ └── kite._processed.jpg ├── DataStructures ├── YoloV4BitmapData.cs ├── YoloV4Prediction.cs └── YoloV4Result.cs ├── Program.cs └── YOLOv4MLNet.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/README.md -------------------------------------------------------------------------------- /YOLOv4MLNet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet.sln -------------------------------------------------------------------------------- /YOLOv4MLNet/Assets/Images/cars road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/Assets/Images/cars road.jpg -------------------------------------------------------------------------------- /YOLOv4MLNet/Assets/Images/dog_cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/Assets/Images/dog_cat.jpg -------------------------------------------------------------------------------- /YOLOv4MLNet/Assets/Images/kite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/Assets/Images/kite.jpg -------------------------------------------------------------------------------- /YOLOv4MLNet/Assets/Images/kite_416.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/Assets/Images/kite_416.jpg -------------------------------------------------------------------------------- /YOLOv4MLNet/Assets/Images/ski.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/Assets/Images/ski.jpg -------------------------------------------------------------------------------- /YOLOv4MLNet/Assets/Images/ski2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/Assets/Images/ski2.jpg -------------------------------------------------------------------------------- /YOLOv4MLNet/Assets/Output/cars road._processed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/Assets/Output/cars road._processed.jpg -------------------------------------------------------------------------------- /YOLOv4MLNet/Assets/Output/dog_cat._processed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/Assets/Output/dog_cat._processed.jpg -------------------------------------------------------------------------------- /YOLOv4MLNet/Assets/Output/kite._processed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/Assets/Output/kite._processed.jpg -------------------------------------------------------------------------------- /YOLOv4MLNet/DataStructures/YoloV4BitmapData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/DataStructures/YoloV4BitmapData.cs -------------------------------------------------------------------------------- /YOLOv4MLNet/DataStructures/YoloV4Prediction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/DataStructures/YoloV4Prediction.cs -------------------------------------------------------------------------------- /YOLOv4MLNet/DataStructures/YoloV4Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/DataStructures/YoloV4Result.cs -------------------------------------------------------------------------------- /YOLOv4MLNet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/Program.cs -------------------------------------------------------------------------------- /YOLOv4MLNet/YOLOv4MLNet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BobLd/YOLOv4MLNet/HEAD/YOLOv4MLNet/YOLOv4MLNet.csproj --------------------------------------------------------------------------------