mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
2.6 KiB
64 lines
2.6 KiB
name: Bug Report |
|
description: Create a report to help us reproduce and fix the bug |
|
labels: ["bug"] |
|
|
|
body: |
|
- type: markdown |
|
attributes: |
|
value: > |
|
#### Thank you for contributing! Before reporting a bug, please have a look at the [FAQ](https://github.com/opencv/opencv/wiki/FAQ), make sure the issue has no duplicate and hasn't been already addressed by searching through [the existing and past issues](https://github.com/opencv/opencv/issues?page=1&q=is%3Aissue+sort%3Acreated-desc). |
|
|
|
- type: textarea |
|
attributes: |
|
label: System Information |
|
description: | |
|
Please provide the following system information to help us diagnose the bug. For example: |
|
|
|
// example for c++ user |
|
OpenCV version: 4.8.0 |
|
Operating System / Platform: Ubuntu 20.04 |
|
Compiler & compiler version: GCC 9.3.0 |
|
|
|
// example for python user |
|
OpenCV python version: 4.8.0.74 |
|
Operating System / Platform: Ubuntu 20.04 |
|
Python version: 3.9.6 |
|
validations: |
|
required: true |
|
- type: textarea |
|
attributes: |
|
label: Detailed description |
|
description: | |
|
Please provide a clear and concise description of what the bug is and paste the error log below. It helps improving readability if the error log is wrapped in ```` ```triple quotes blocks``` ````. |
|
placeholder: | |
|
A clear and concise description of what the bug is. |
|
|
|
``` |
|
# error log |
|
``` |
|
validations: |
|
required: true |
|
- type: textarea |
|
attributes: |
|
label: Steps to reproduce |
|
description: | |
|
Please provide a minimal example to help us reproduce the bug. Code should be wrapped with ```` ```triple quotes blocks``` ```` to improve readability. If the code is too long, please attach as a file or create and link a public gist: https://gist.github.com. |
|
|
|
Related data files (images, onnx, etc) should be attached below as well. If the data files are too big, feel free to upload them to a online drive, share them and put the link below. |
|
placeholder: | |
|
```cpp (replace cpp with python if python code) |
|
# sample code to reproduce the bug |
|
``` |
|
|
|
Test data: [image](https://link/to/the/image), [model.onnx](htts://link/to/the/onnx/model) |
|
validations: |
|
required: true |
|
- type: checkboxes |
|
attributes: |
|
label: Issue submission checklist |
|
options: |
|
- label: I report the issue, it's not a question |
|
required: true |
|
- label: I checked the problem with documentation, FAQ, open issues, forum.opencv.org, Stack Overflow, etc and have not found any solution |
|
- label: I updated to the latest OpenCV version and the issue is still there |
|
- label: There is reproducer code and related data files (videos, images, onnx, etc)
|
|
|