opencv_zoo
Collection
27 items
•
Updated
•
17
Welcome to the OpenCV Model Zoo! A zoo for models tuned for OpenCV DNN.
Each model directory must follow this structure:
<root-folder>/ # i.e. opencv_contribution
├── CMakeLists.txt # For C++ example build integration
├── LICENSE # Your model’s license
├── README.md # Model description & usage
├── <model_name>_<year><mon>.onnx # ONNX (or supported) model file;
│ # use 4-digit year + three-letter month,
│ # e.g. edge_detection_dexined_2024sep.onnx
├── demo.cpp # (Optional) C++ demo
├── demo.py # Python demo
├── <helper_script>.py # (Optional) model‐loading wrapper
└── example_outputs/ # Sample inputs & outputs
├── input_image.png # At least one representative input
├── output_image.png # Your model’s result on that input
└── result.gif # (Optional) output animation
OpenCV Zoo is licensed under the Apache 2.0 license. Please refer to licenses of different models.