ISSUE_TEMPLATE.md 2.8 KB
Newer Older
1
<!--
2
If you have a question rather than reporting a bug please go to https://forum.opencv.org where you get much faster responses.
3
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
4

5 6
This is a template helping you to create an issue which can be processed as quickly as possible. This is the bug reporting section for the OpenCV library.
-->
P
Philip 已提交
7

8 9
##### System information (version)
<!-- Example
10
- OpenCV => 4.2
11
- Operating System / Platform => Windows 64 Bit
12
- Compiler => Visual Studio 2017
13
-->
P
Philip 已提交
14

15 16 17
- OpenCV => :grey_question:
- Operating System / Platform => :grey_question:
- Compiler => :grey_question:
P
Philip 已提交
18

19
##### Detailed description
P
Philip 已提交
20

21
<!-- your description -->
P
Philip 已提交
22

23
##### Steps to reproduce
P
Philip 已提交
24

25 26 27 28 29
<!-- to add code example fence it with triple backticks and optional file extension
    ```.cpp
    // C++ code example
    ```
 or attach as .txt or .zip file
30
-->
31 32 33 34 35

##### Issue submission checklist

 - [ ] I report the issue, it's not a question
   <!--
36
   OpenCV team works with forum.opencv.org, Stack Overflow and other communities
37
   to discuss problems. Tickets with questions without a real issue statement will be
38 39 40
   closed.
   -->
 - [ ] I checked the problem with documentation, FAQ, open issues,
41
       forum.opencv.org, Stack Overflow, etc and have not found any solution
42 43 44 45
   <!--
   Places to check:
   * OpenCV documentation: https://docs.opencv.org
   * FAQ page: https://github.com/opencv/opencv/wiki/FAQ
46
   * OpenCV forum: https://forum.opencv.org
47 48 49
   * OpenCV issue tracker: https://github.com/opencv/opencv/issues?q=is%3Aissue
   * Stack Overflow branch: https://stackoverflow.com/questions/tagged/opencv
   -->
50
 - [ ] I updated to the latest OpenCV version and the issue is still there
51 52
   <!--
   master branch for OpenCV 4.x and 3.4 branch for OpenCV 3.x releases.
53 54
   OpenCV team supports only the latest release for each branch.
   The ticket is closed if the problem is not reproduced with the modern version.
55 56 57 58 59 60 61 62 63
   -->
 - [ ] There is reproducer code and related data files: videos, images, onnx, etc
   <!--
   The best reproducer -- test case for OpenCV that we can add to the library.
   Recommendations for media files and binary files:
   * Try to reproduce the issue with images and videos in opencv_extra repository
     to reduce attachment size
   * Use PNG for images, if you report some CV related bug, but not image reader
     issue
64
   * Attach the image as an archive to the ticket, if you report some reader issue.
65
     Image hosting services compress images and it breaks the repro code.
66
   * Provide ONNX file for some public model or ONNX file with random weights,
67 68 69
     if you report ONNX parsing or handling issue. Architecture details diagram
     from netron tool can be very useful too. See https://lutzroeder.github.io/netron/
   -->