Skip to content

Commit 6c6badb

Browse files
committed
Merge pull request opencv#6818 from Dikay900:template_patch
2 parents 02aabcc + 61390e4 commit 6c6badb

File tree

2 files changed

+30
-32
lines changed

2 files changed

+30
-32
lines changed

.github/ISSUE_TEMPLATE.md

+22-29
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,30 @@
1-
This is a template helping you to create an issue which can be processes as quickly as possible. Feel free to add additional information or remove not relevant points if you do not need them.
2-
1+
<!--
32
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
3+
If you need further assistance please read [How To Contribute](https://github.com/Itseez/opencv/wiki/How_to_contribute).
44
5-
### Please state the information for your system
6-
- OpenCV version: 2.4 / 3.x
7-
- Host OS: Linux (Ubuntu 14.04) / Mac OS X 10.11.3 / Windows 10
8-
- *(if needed, only cross-platform builds)* Target OS: host / Android 6.0 / ARM board / Raspberry Pi 2
9-
- *(if needed)* Compiler & CMake: GCC 5.3 & CMake 3.5
10-
11-
### In which part of the OpenCV library you got the issue?
12-
Examples:
13-
- objdetect, highgui, imgproc, cuda, tests
14-
- face recognition, resizing an image, reading an jpg image
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+
-->
157

16-
### Expected behaviour
8+
##### System information (version)
9+
<!-- Example
10+
- OpenCV => 3.1
11+
- Operating System / Platform => Windows 64 Bit
12+
- Compiler => Visual Studio 2015
13+
-->
1714

18-
### Actual behaviour
15+
- OpenCV => :grey_question:
16+
- Operating System / Platform => :grey_question:
17+
- Compiler => :grey_question:
1918

20-
### Additional description
19+
##### Detailed description
2120

22-
### Code example to reproduce the issue / Steps to reproduce the issue
23-
Please try to give a full example which will compile as is.
24-
```
25-
#include "opencv2/core.hpp"
26-
#include <iostream>
27-
using namespace std;
28-
using namespace cv;
21+
<!-- your description -->
2922

30-
int main()
31-
{
32-
double d[] = { 546,2435,7,4534,23423,3 };
33-
cout << "d = 0x" << reinterpret_cast<void*>(d) << endl;
23+
##### Steps to reproduce
3424

35-
return 0;
36-
}
37-
```
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+
-->

.github/PULL_REQUEST_TEMPLATE.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
resolves #XXXX
1+
<!-- Please use this line to close one or multiple issues when this pullrequest gets merged
2+
You can add another line right under the first one:
3+
resolves #1234
4+
resolves #1235
5+
-->
26

3-
### What does this PR change?
4-
Please add your changes here.
7+
### This pullrequest changes
8+
9+
<!-- Please describe what your pullrequest is changing -->

0 commit comments

Comments
 (0)