Skip to content

Commit afcb7bb

Browse files
committed
Merge pull request #727 from alalek:migration
2 parents de378a7 + 823dea7 commit afcb7bb

File tree

11 files changed

+21
-21
lines changed

11 files changed

+21
-21
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
-->

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ compiler:
44
- clang
55
before_script:
66
- cd ../
7-
- git clone https://github.com/Itseez/opencv.git
7+
- git clone https://github.com/opencv/opencv.git
88
- mkdir build-opencv
99
- cd build-opencv
1010
- cmake -DOPENCV_EXTRA_MODULES_PATH=../opencv_contrib/modules ../opencv

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).

modules/dnn/tutorials/tutorial_dnn_build.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Build opencv_contrib with dnn module {#tutorial_dnn_build}
33

44
Introduction
55
------------
6-
opencv_dnn module is placed in the secondary [opencv_contrib](https://github.com/Itseez/opencv_contrib) repository,
6+
opencv_dnn module is placed in the secondary [opencv_contrib](https://github.com/opencv/opencv_contrib) repository,
77
which isn't distributed in binary form, therefore you need to build it manually.
88

99
To do this you need to have installed: [CMake](http://www.cmake.org/download), git, and build system (*gcc* with *make* for Linux or *MS Visual Studio* for Windows)
@@ -12,12 +12,12 @@ Steps
1212
-----
1313
-# Make any directory, for example **opencv_root**
1414

15-
-# Clone [opencv](https://github.com/Itseez/opencv) and [opencv_contrib](https://github.com/Itseez/opencv_contrib) repos to the **opencv_root**.
15+
-# Clone [opencv](https://github.com/opencv/opencv) and [opencv_contrib](https://github.com/opencv/opencv_contrib) repos to the **opencv_root**.
1616
You can do it in terminal like here:
1717
@code
1818
cd opencv_root
19-
git clone https://github.com/Itseez/opencv
20-
git clone https://github.com/Itseez/opencv_contrib
19+
git clone https://github.com/opencv/opencv
20+
git clone https://github.com/opencv/opencv_contrib
2121
@endcode
2222

2323
-# Run [CMake-gui] and set source and build directories:

modules/text/include/opencv2/text.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ grouping horizontally aligned text, and the method proposed by Lluis Gomez and D
9292
in [Gomez13][Gomez14] for grouping arbitrary oriented text (see erGrouping).
9393
9494
To see the text detector at work, have a look at the textdetection demo:
95-
<https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/textdetection.cpp>
95+
<https://github.com/opencv/opencv_contrib/blob/master/modules/text/samples/textdetection.cpp>
9696
9797
@defgroup text_recognize Scene Text Recognition
9898
@}

modules/text/include/opencv2/text/erfilter.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ single vector\<Point\>, the function separates them in two different vectors (th
345345
ERStats where extracted from two different channels).
346346
347347
An example of MSERsToERStats in use can be found in the text detection webcam_demo:
348-
<https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/webcam_demo.cpp>
348+
<https://github.com/opencv/opencv_contrib/blob/master/modules/text/samples/webcam_demo.cpp>
349349
*/
350350
CV_EXPORTS void MSERsToERStats(InputArray image, std::vector<std::vector<Point> > &contours,
351351
std::vector<std::vector<ERStat> > &regions);

modules/text/include/opencv2/text/ocr.hpp

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,10 @@ Notice that it is compiled only when tesseract-ocr is correctly installed.
8181
@note
8282
- (C++) An example of OCRTesseract recognition combined with scene text detection can be found
8383
at the end_to_end_recognition demo:
84-
<https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/end_to_end_recognition.cpp>
84+
<https://github.com/opencv/opencv_contrib/blob/master/modules/text/samples/end_to_end_recognition.cpp>
8585
- (C++) Another example of OCRTesseract recognition combined with scene text detection can be
8686
found at the webcam_demo:
87-
<https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/webcam_demo.cpp>
87+
<https://github.com/opencv/opencv_contrib/blob/master/modules/text/samples/webcam_demo.cpp>
8888
*/
8989
class CV_EXPORTS_W OCRTesseract : public BaseOCR
9090
{
@@ -152,7 +152,7 @@ enum decoder_mode
152152
@note
153153
- (C++) An example on using OCRHMMDecoder recognition combined with scene text detection can
154154
be found at the webcam_demo sample:
155-
<https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/webcam_demo.cpp>
155+
<https://github.com/opencv/opencv_contrib/blob/master/modules/text/samples/webcam_demo.cpp>
156156
*/
157157
class CV_EXPORTS_W OCRHMMDecoder : public BaseOCR
158158
{
@@ -165,7 +165,7 @@ class CV_EXPORTS_W OCRHMMDecoder : public BaseOCR
165165
166166
The default character classifier and feature extractor can be loaded using the utility funtion
167167
loadOCRHMMClassifierNM and KNN model provided in
168-
<https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/OCRHMM_knn_model_data.xml.gz>.
168+
<https://github.com/opencv/opencv_contrib/blob/master/modules/text/samples/OCRHMM_knn_model_data.xml.gz>.
169169
*/
170170
class CV_EXPORTS_W ClassifierCallback
171171
{
@@ -321,7 +321,7 @@ CV_EXPORTS_W Ptr<OCRHMMDecoder::ClassifierCallback> loadOCRHMMClassifierCNN(cons
321321
* The function calculate frequency statistics of character pairs from the given lexicon and fills the output transition_probabilities_table with them. The transition_probabilities_table can be used as input in the OCRHMMDecoder::create() and OCRBeamSearchDecoder::create() methods.
322322
* @note
323323
* - (C++) An alternative would be to load the default generic language transition table provided in the text module samples folder (created from ispell 42869 english words list) :
324-
* <https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/OCRHMM_transitions_table.xml>
324+
* <https://github.com/opencv/opencv_contrib/blob/master/modules/text/samples/OCRHMM_transitions_table.xml>
325325
**/
326326
CV_EXPORTS void createOCRHMMTransitionsTable(std::string& vocabulary, std::vector<std::string>& lexicon, OutputArray transition_probabilities_table);
327327

@@ -335,7 +335,7 @@ CV_EXPORTS_W Mat createOCRHMMTransitionsTable(const String& vocabulary, std::vec
335335
@note
336336
- (C++) An example on using OCRBeamSearchDecoder recognition combined with scene text detection can
337337
be found at the demo sample:
338-
<https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/word_recognition.cpp>
338+
<https://github.com/opencv/opencv_contrib/blob/master/modules/text/samples/word_recognition.cpp>
339339
*/
340340
class CV_EXPORTS_W OCRBeamSearchDecoder : public BaseOCR
341341
{
@@ -348,7 +348,7 @@ class CV_EXPORTS_W OCRBeamSearchDecoder : public BaseOCR
348348
349349
The default character classifier and feature extractor can be loaded using the utility funtion
350350
loadOCRBeamSearchClassifierCNN with all its parameters provided in
351-
<https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/OCRBeamSearch_CNN_model_data.xml.gz>.
351+
<https://github.com/opencv/opencv_contrib/blob/master/modules/text/samples/OCRBeamSearch_CNN_model_data.xml.gz>.
352352
*/
353353
class CV_EXPORTS_W ClassifierCallback
354354
{

modules/text/src/ocr_hmm_decoder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1206,7 +1206,7 @@ the output transition_probabilities_table with them.
12061206
The transition_probabilities_table can be used as input in the OCRHMMDecoder::create() and OCRBeamSearchDecoder::create() methods.
12071207
@note
12081208
- (C++) An alternative would be to load the default generic language transition table provided in the text module samples folder (created from ispell 42869 english words list) :
1209-
<https://github.com/Itseez/opencv_contrib/blob/master/modules/text/samples/OCRHMM_transitions_table.xml>
1209+
<https://github.com/opencv/opencv_contrib/blob/master/modules/text/samples/OCRHMM_transitions_table.xml>
12101210
*/
12111211
void createOCRHMMTransitionsTable(string& vocabulary, vector<string>& lexicon, OutputArray _transitions)
12121212
{

modules/tracking/tutorials/tutorial_introduction_to_tracker.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Explanation
2828
as shown in help. In the help, it means that the image files are numbered with 4 digits
2929
(e.g. the file naming will be 0001.jpg, 0002.jpg, and so on).
3030

31-
You can find video samples in Itseez/opencv_extra/testdata/cv/tracking
32-
<https://github.com/Itseez/opencv_extra/tree/master/testdata/cv/tracking>
31+
You can find video samples in opencv_extra/testdata/cv/tracking
32+
<https://github.com/opencv/opencv_extra/tree/master/testdata/cv/tracking>
3333

3434
-# **Declares the required variables**
3535

modules/ximgproc/samples/structured_edge_detection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**************************************************************************************
22
The structered edge demo requires you to provide a model.
33
This model can be found at the opencv_extra repository on Github on the following link:
4-
https://github.com/Itseez/opencv_extra/blob/master/testdata/cv/ximgproc/model.yml.gz
4+
https://github.com/opencv/opencv_extra/blob/master/testdata/cv/ximgproc/model.yml.gz
55
***************************************************************************************/
66

77
#include <opencv2/ximgproc.hpp>

0 commit comments

Comments
 (0)