Add TIZEN_FEATURE_LIBAV to CFLAGS and CXXFLAGS
[platform/upstream/opencv.git] / .github / ISSUE_TEMPLATE.md
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 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.
6 -->
7
8 ##### System information (version)
9 <!-- Example
10 - OpenCV => 4.2
11 - Operating System / Platform => Windows 64 Bit
12 - Compiler => Visual Studio 2017
13 -->
14
15 - OpenCV => :grey_question:
16 - Operating System / Platform => :grey_question:
17 - Compiler => :grey_question:
18
19 ##### Detailed description
20
21 <!-- your description -->
22
23 ##### Steps to reproduce
24
25 <!-- to add code example fence it with triple backticks and optional file extension
26     ```.cpp
27     // C++ code example
28     ```
29  or attach as .txt or .zip file
30 -->
31
32 ##### Issue submission checklist
33
34  - [ ] I report the issue, it's not a question
35    <!--
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    closed.
39    -->
40  - [ ] I checked the problem with documentation, FAQ, open issues,
41        forum.opencv.org, Stack Overflow, etc and have not found any solution
42    <!--
43    Places to check:
44    * OpenCV documentation: https://docs.opencv.org
45    * FAQ page: https://github.com/opencv/opencv/wiki/FAQ
46    * OpenCV forum: https://forum.opencv.org
47    * OpenCV issue tracker: https://github.com/opencv/opencv/issues?q=is%3Aissue
48    * Stack Overflow branch: https://stackoverflow.com/questions/tagged/opencv
49    -->
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    OpenCV team supports only the latest release for each branch.
54    The ticket is closed if the problem is not reproduced with the modern version.
55    -->
56  - [ ] There is reproducer code and related data files: videos, images, onnx, etc
57    <!--
58    The best reproducer -- test case for OpenCV that we can add to the library.
59    Recommendations for media files and binary files:
60    * Try to reproduce the issue with images and videos in opencv_extra repository
61      to reduce attachment size
62    * Use PNG for images, if you report some CV related bug, but not image reader
63      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      if you report ONNX parsing or handling issue. Architecture details diagram
68      from netron tool can be very useful too. See https://lutzroeder.github.io/netron/
69    -->