mirror of
https://github.com/opencv/opencv.git
synced 2025-06-07 17:44:04 +08:00
Merge pull request #6818 from Dikay900:template_patch
This commit is contained in:
commit
6c6badb6a6
51
.github/ISSUE_TEMPLATE.md
vendored
51
.github/ISSUE_TEMPLATE.md
vendored
@ -1,37 +1,30 @@
|
|||||||
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.
|
<!--
|
||||||
|
|
||||||
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
|
If you have a question rather than reporting a bug please go to http://answers.opencv.org where you get much faster responses.
|
||||||
|
If you need further assistance please read [How To Contribute](https://github.com/Itseez/opencv/wiki/How_to_contribute).
|
||||||
|
|
||||||
### Please state the information for your system
|
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.
|
||||||
- OpenCV version: 2.4 / 3.x
|
-->
|
||||||
- Host OS: Linux (Ubuntu 14.04) / Mac OS X 10.11.3 / Windows 10
|
|
||||||
- *(if needed, only cross-platform builds)* Target OS: host / Android 6.0 / ARM board / Raspberry Pi 2
|
|
||||||
- *(if needed)* Compiler & CMake: GCC 5.3 & CMake 3.5
|
|
||||||
|
|
||||||
### In which part of the OpenCV library you got the issue?
|
##### System information (version)
|
||||||
Examples:
|
<!-- Example
|
||||||
- objdetect, highgui, imgproc, cuda, tests
|
- OpenCV => 3.1
|
||||||
- face recognition, resizing an image, reading an jpg image
|
- Operating System / Platform => Windows 64 Bit
|
||||||
|
- Compiler => Visual Studio 2015
|
||||||
|
-->
|
||||||
|
|
||||||
### Expected behaviour
|
- OpenCV => :grey_question:
|
||||||
|
- Operating System / Platform => :grey_question:
|
||||||
|
- Compiler => :grey_question:
|
||||||
|
|
||||||
### Actual behaviour
|
##### Detailed description
|
||||||
|
|
||||||
### Additional description
|
<!-- your description -->
|
||||||
|
|
||||||
### Code example to reproduce the issue / Steps to reproduce the issue
|
##### Steps to reproduce
|
||||||
Please try to give a full example which will compile as is.
|
|
||||||
```
|
|
||||||
#include "opencv2/core.hpp"
|
|
||||||
#include <iostream>
|
|
||||||
using namespace std;
|
|
||||||
using namespace cv;
|
|
||||||
|
|
||||||
int main()
|
<!-- to add code example fence it with triple backticks and optional file extension
|
||||||
{
|
```.cpp
|
||||||
double d[] = { 546,2435,7,4534,23423,3 };
|
// C++ code example
|
||||||
cout << "d = 0x" << reinterpret_cast<void*>(d) << endl;
|
```
|
||||||
|
or attach as .txt or .zip file
|
||||||
return 0;
|
-->
|
||||||
}
|
|
||||||
```
|
|
11
.github/PULL_REQUEST_TEMPLATE.md
vendored
11
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,4 +1,9 @@
|
|||||||
resolves #XXXX
|
<!-- Please use this line to close one or multiple issues when this pullrequest gets merged
|
||||||
|
You can add another line right under the first one:
|
||||||
|
resolves #1234
|
||||||
|
resolves #1235
|
||||||
|
-->
|
||||||
|
|
||||||
### What does this PR change?
|
### This pullrequest changes
|
||||||
Please add your changes here.
|
|
||||||
|
<!-- Please describe what your pullrequest is changing -->
|
||||||
|
Loading…
Reference in New Issue
Block a user