Skip to content

Commit ddc0b42

Browse files
committed
migration: github.com/opencv/opencv
1 parent 6c6badb commit ddc0b42

File tree

94 files changed

+120
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

94 files changed

+120
-120
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!--
22
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).
3+
If you need further assistance please read [How To Contribute](https://github.com/opencv/opencv/wiki/How_to_contribute).
44
55
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.
66
-->

3rdparty/ffmpeg/ffmpeg.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set(FFMPEG_FILE_HASH_BIN32 "89c783eee1c47bfc733f08334ec2e31c")
55
set(FFMPEG_FILE_HASH_BIN64 "35fe6ccdda6d7a04e9056b0d73b98e76")
66
set(FFMPEG_FILE_HASH_CMAKE "8606f947a780071f8fcce8cbf39ceef5")
77

8-
set(FFMPEG_DOWNLOAD_URL ${OPENCV_FFMPEG_URL};$ENV{OPENCV_FFMPEG_URL};https://raw.githubusercontent.com/Itseez/opencv_3rdparty/${FFMPEG_BINARIES_COMMIT}/ffmpeg/)
8+
set(FFMPEG_DOWNLOAD_URL ${OPENCV_FFMPEG_URL};$ENV{OPENCV_FFMPEG_URL};https://raw.githubusercontent.com/opencv/opencv_3rdparty/${FFMPEG_BINARIES_COMMIT}/ffmpeg/)
99

1010
ocv_download(PACKAGE opencv_ffmpeg.dll
1111
HASH ${FFMPEG_FILE_HASH_BIN32}

3rdparty/ippicv/downloader.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ function(_icv_downloader)
6464
if(DEFINED ENV{OPENCV_ICV_URL})
6565
set(OPENCV_ICV_URL $ENV{OPENCV_ICV_URL})
6666
else()
67-
set(OPENCV_ICV_URL "https://raw.githubusercontent.com/Itseez/opencv_3rdparty/${IPPICV_BINARIES_COMMIT}/ippicv")
67+
set(OPENCV_ICV_URL "https://raw.githubusercontent.com/opencv/opencv_3rdparty/${IPPICV_BINARIES_COMMIT}/ippicv")
6868
endif()
6969
endif()
7070

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## Contributing guidelines
22

3-
All guidelines for contributing to the OpenCV repository can be found at [`How to contribute guideline`](https://github.com/Itseez/opencv/wiki/How_to_contribute).
3+
All guidelines for contributing to the OpenCV repository can be found at [`How to contribute guideline`](https://github.com/opencv/opencv/wiki/How_to_contribute).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
* Homepage: <http://opencv.org>
66
* Docs: <http://docs.opencv.org/master/>
77
* Q&A forum: <http://answers.opencv.org>
8-
* Issue tracking: <https://github.com/Itseez/opencv/issues>
8+
* Issue tracking: <https://github.com/opencv/opencv/issues>
99

1010
#### Contributing
1111

12-
Please read before starting work on a pull request: <https://github.com/Itseez/opencv/wiki/How_to_contribute>
12+
Please read before starting work on a pull request: <https://github.com/opencv/opencv/wiki/How_to_contribute>
1313

1414
Summary of guidelines:
1515

doc/Doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ BINARY_TOC = NO
150150
TOC_EXPAND = NO
151151
GENERATE_QHP = @CMAKE_DOXYGEN_GENERATE_QHP@
152152
QCH_FILE = ../opencv-@[email protected]
153-
QHP_NAMESPACE = org.itseez.opencv.@OPENCV_VERSION@
153+
QHP_NAMESPACE = org.opencv.@OPENCV_VERSION@
154154
QHP_VIRTUAL_FOLDER = opencv
155155
QHP_CUST_FILTER_NAME =
156156
QHP_CUST_FILTER_ATTRS =

doc/py_tutorials/py_feature2d/py_brief/py_brief.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ BRIEF in OpenCV
4949
Below code shows the computation of BRIEF descriptors with the help of CenSurE detector. (CenSurE
5050
detector is called STAR detector in OpenCV)
5151

52-
note, that you need [opencv contrib](https://github.com/Itseez/opencv_contrib)) to use this.
52+
note, that you need [opencv contrib](https://github.com/opencv/opencv_contrib)) to use this.
5353
@code{.py}
5454
import numpy as np
5555
import cv2

doc/py_tutorials/py_feature2d/py_sift_intro/py_sift_intro.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ greater than 0.8, they are rejected. It eliminaters around 90% of false matches
104104

105105
So this is a summary of SIFT algorithm. For more details and understanding, reading the original
106106
paper is highly recommended. Remember one thing, this algorithm is patented. So this algorithm is
107-
included in [the opencv contrib repo](https://github.com/Itseez/opencv_contrib)
107+
included in [the opencv contrib repo](https://github.com/opencv/opencv_contrib)
108108

109109
SIFT in OpenCV
110110
--------------

doc/py_tutorials/py_setup/py_intro/py_intro.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ OpenCV Needs You !!!
5858
Since OpenCV is an open source initiative, all are welcome to make contributions to the library,
5959
documentation, and tutorials. If you find any mistake in this tutorial (from a small spelling
6060
mistake to an egregious error in code or concept), feel free to correct it by cloning OpenCV in
61-
[GitHub](https://github.com/Itseez/opencv) and submitting a pull request. OpenCV developers will
61+
[GitHub](https://github.com/opencv/opencv) and submitting a pull request. OpenCV developers will
6262
check your pull request, give you important feedback and (once it passes the approval of the
6363
reviewer) it will be merged into OpenCV. You will then become an open source contributor :-)
6464

doc/py_tutorials/py_setup/py_setup_in_fedora/py_setup_in_fedora.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Or you can download latest source from OpenCV's github repo. (If you want to con
119119
choose this. It always keeps your OpenCV up-to-date). For that, you need to install **Git** first.
120120
@code{.sh}
121121
yum install git
122-
git clone https://github.com/Itseez/opencv.git
122+
git clone https://github.com/opencv/opencv.git
123123
@endcode
124124
It will create a folder OpenCV in home directory (or the directory you specify). The cloning may
125125
take some time depending upon your internet connection.

0 commit comments

Comments
 (0)