scanbot-web-sdk 2.6.0-beta1 → 2.6.0-beta2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/@types/scanbot-sdk.d.ts +2 -0
- package/@types/service/blur-detector.d.ts +10 -0
- package/@types/utils/image-utils.d.ts +1 -0
- package/Libraries.txt +213 -247
- package/bundle/ScanbotSDK.Core.js +1 -1
- package/bundle/ScanbotSDK.min.js +2 -2
- package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm +0 -0
- package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
- package/bundle/bin/complete/ScanbotSDK.Asm.wasm +0 -0
- package/bundle/bin/complete/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
- package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm +0 -0
- package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm-webpack-file-loader +0 -0
- package/package.json +1 -1
package/@types/scanbot-sdk.d.ts
CHANGED
|
@@ -19,6 +19,7 @@ import { MrzScannerConfiguration } from "./model/configuration/mrz-scanner-confi
|
|
|
19
19
|
import { IMrzScannerHandle } from "./interfaces/i-mrz-scanner-handle";
|
|
20
20
|
import SimpleMrzRecognizer from "./service/simple-mrz-recognizer";
|
|
21
21
|
import OcrEngine from "./service/ocr-engine";
|
|
22
|
+
import BlurDetector from "./service/blur-detector";
|
|
22
23
|
import { ContourDetectionResult } from "./model/document/contour-detection-result";
|
|
23
24
|
export default class ScanbotSDK {
|
|
24
25
|
bridge: WorkerBridge;
|
|
@@ -44,6 +45,7 @@ export default class ScanbotSDK {
|
|
|
44
45
|
detectBarcodes(base64: string, engineMode?: EngineMode, barcodeFormats?: BarcodeFormat[]): Promise<BarcodeResult>;
|
|
45
46
|
createSimpleMRZRecognizer(): Promise<SimpleMrzRecognizer>;
|
|
46
47
|
createOcrEngine(languages: Array<string>): Promise<OcrEngine>;
|
|
48
|
+
createBlurDetector(): Promise<BlurDetector>;
|
|
47
49
|
/**
|
|
48
50
|
* Misc. Features
|
|
49
51
|
*/
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import ScanbotSDK from '../scanbot-sdk';
|
|
2
|
+
export default class BlurDetector {
|
|
3
|
+
_token: string;
|
|
4
|
+
_sdk: ScanbotSDK;
|
|
5
|
+
constructor(sdk: ScanbotSDK, token: string);
|
|
6
|
+
estimateBlurriness(imageData: ImageData): Promise<Number>;
|
|
7
|
+
estimateBlurrinessOnBuffer(imageBuffer: ArrayBuffer): Promise<Number>;
|
|
8
|
+
estimateBlurrinessURL(imageURL: string): Promise<Number>;
|
|
9
|
+
release(): Promise<void>;
|
|
10
|
+
}
|
|
@@ -3,4 +3,5 @@ import { Frame } from "./dto/Frame";
|
|
|
3
3
|
export declare class ImageUtils {
|
|
4
4
|
static toDataUrl(buffer: ArrayBuffer): Promise<string>;
|
|
5
5
|
static getObjectFitSize(container: Size, size: Size, contains?: boolean): Frame;
|
|
6
|
+
static loadFromUrl(imageURL: string): Promise<ImageData>;
|
|
6
7
|
}
|
package/Libraries.txt
CHANGED
|
@@ -1,28 +1,40 @@
|
|
|
1
1
|
Open Source libraries used in the Scanbot Web Document Scanner SDK
|
|
2
|
-
|
|
3
2
|
----------------------------------------------------------------------------------------
|
|
4
3
|
|
|
5
|
-
|
|
6
|
-
(https://
|
|
4
|
+
@types/styled-components 5.1.15
|
|
5
|
+
(https://github.com/DefinitelyTyped/DefinitelyTyped)
|
|
7
6
|
|
|
8
|
-
|
|
7
|
+
MIT License
|
|
9
8
|
|
|
10
|
-
Copyright (c)
|
|
9
|
+
Copyright (c) Microsoft Corporation.
|
|
11
10
|
|
|
12
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
11
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
12
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
13
|
+
in the Software without restriction, including without limitation the rights
|
|
14
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
15
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
16
|
+
furnished to do so, subject to the following conditions:
|
|
13
17
|
|
|
14
|
-
The above copyright notice and this permission notice shall be included in all
|
|
18
|
+
The above copyright notice and this permission notice shall be included in all
|
|
19
|
+
copies or substantial portions of the Software.
|
|
20
|
+
|
|
21
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
22
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
23
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
24
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
25
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
26
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
27
|
+
SOFTWARE
|
|
15
28
|
|
|
16
|
-
THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
17
29
|
|
|
18
30
|
----------------------------------------------------------------------------------------
|
|
19
31
|
|
|
20
|
-
|
|
21
|
-
(https://github.com/
|
|
32
|
+
classnames 2.3.1
|
|
33
|
+
(https://github.com/JedWatson/classnames)
|
|
22
34
|
|
|
23
35
|
The MIT License (MIT)
|
|
24
36
|
|
|
25
|
-
Copyright (c)
|
|
37
|
+
Copyright (c) 2018 Jed Watson
|
|
26
38
|
|
|
27
39
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
28
40
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -42,114 +54,61 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
42
54
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
43
55
|
SOFTWARE.
|
|
44
56
|
|
|
45
|
-
----------------------------------------------------------------------------------------
|
|
46
|
-
|
|
47
|
-
OpenSSL
|
|
48
|
-
(https://github.com/openssl/openssl)
|
|
49
|
-
|
|
50
|
-
Copyright (c) 1998-2020 The OpenSSL Project. All rights reserved.
|
|
51
|
-
|
|
52
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
53
|
-
|
|
54
|
-
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
55
|
-
|
|
56
|
-
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
57
|
-
|
|
58
|
-
3. All advertising materials mentioning features or use of this software must display the following acknowledgment:
|
|
59
|
-
"This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
|
|
60
|
-
|
|
61
|
-
4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to endorse or promote products derived from this software without prior written permission. For written permission, please contact openssl-core@openssl.org.
|
|
62
|
-
|
|
63
|
-
5. Products derived from this software may not be called "OpenSSL" nor may "OpenSSL" appear in their names without prior written permission of the OpenSSL Project.
|
|
64
|
-
|
|
65
|
-
6. Redistributions of any form whatsoever must retain the following acknowledgment: "This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit (http://www.openssl.org/)"
|
|
66
|
-
|
|
67
|
-
THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
68
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
69
|
-
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
|
|
70
|
-
ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
|
71
|
-
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
72
|
-
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
73
|
-
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
74
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
75
|
-
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
76
|
-
====================================================================
|
|
77
|
-
|
|
78
|
-
This product includes cryptographic software written by Eric Young (eay@cryptsoft.com).
|
|
79
|
-
This product includes software written by Tim Hudson (tjh@cryptsoft.com).
|
|
80
|
-
|
|
81
|
-
Original SSLeay License
|
|
82
|
-
-----------------------
|
|
83
|
-
|
|
84
|
-
Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
|
|
85
|
-
All rights reserved.
|
|
86
|
-
|
|
87
|
-
This package is an SSL implementation written by Eric Young (eay@cryptsoft.com). The implementation was written so as to conform with Netscapes SSL.
|
|
88
57
|
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
Copyright remains Eric Young's, and as such any Copyright notices in the code are not to be removed. If this package is used in a product, Eric Young should be given attribution
|
|
92
|
-
as the author of the parts of the library used. This can be in the form of a textual message at program startup or in documentation (online or textual) provided with the package.
|
|
93
|
-
|
|
94
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
95
|
-
|
|
96
|
-
1. Redistributions of source code must retain the copyright notice, this list of conditions and the following disclaimer.
|
|
97
|
-
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
98
|
-
3. All advertising materials mentioning features or use of this software must display the following acknowledgement:
|
|
99
|
-
"This product includes cryptographic software written by Eric Young (eay@cryptsoft.com)"
|
|
100
|
-
The word 'cryptographic' can be left out if the rouines from the library being used are not cryptographic related :-).
|
|
101
|
-
4. If you include any Windows specific code (or a derivative thereof) from the apps directory (application code) you must include an acknowledgement:
|
|
102
|
-
"This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
|
|
58
|
+
----------------------------------------------------------------------------------------
|
|
103
59
|
|
|
104
|
-
|
|
105
|
-
|
|
60
|
+
react-is 16.13.1
|
|
61
|
+
(https://github.com/facebook/react)
|
|
106
62
|
|
|
107
|
-
|
|
63
|
+
MIT License
|
|
108
64
|
|
|
109
|
-
|
|
65
|
+
Copyright (c) Facebook, Inc. and its affiliates.
|
|
110
66
|
|
|
111
|
-
|
|
67
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
68
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
69
|
+
in the Software without restriction, including without limitation the rights
|
|
70
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
71
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
72
|
+
furnished to do so, subject to the following conditions:
|
|
112
73
|
|
|
113
|
-
|
|
74
|
+
The above copyright notice and this permission notice shall be included in all
|
|
75
|
+
copies or substantial portions of the Software.
|
|
114
76
|
|
|
115
|
-
THE SOFTWARE IS PROVIDED "AS IS"
|
|
116
|
-
|
|
117
|
-
|
|
77
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
78
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
79
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
80
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
81
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
82
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
83
|
+
SOFTWARE.
|
|
118
84
|
|
|
119
|
-
|
|
85
|
+
----------------------------------------------------------------------------------------
|
|
120
86
|
|
|
121
|
-
|
|
87
|
+
BOOST C++ Libraries
|
|
122
88
|
|
|
123
|
-
|
|
89
|
+
Version 1.73
|
|
90
|
+
(https://github.com/boostorg/boost)
|
|
124
91
|
|
|
125
|
-
|
|
92
|
+
This library is distributed under the terms of the following license: https://www.boost.org/LICENSE_1_0.txt
|
|
126
93
|
|
|
127
|
-
|
|
94
|
+
Boost Software License - Version 1.0 - August 17th, 2003
|
|
128
95
|
|
|
129
|
-
|
|
96
|
+
Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following:
|
|
130
97
|
|
|
131
|
-
|
|
98
|
+
The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative
|
|
99
|
+
works are solely in the form of machine-executable object code generated by a source language processor.
|
|
132
100
|
|
|
133
|
-
|
|
134
|
-
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
135
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
136
|
-
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION OR
|
|
137
|
-
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
138
|
-
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
139
|
-
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
140
|
-
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
141
|
-
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
142
|
-
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
143
|
-
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
101
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
144
102
|
|
|
145
103
|
----------------------------------------------------------------------------------------
|
|
146
104
|
|
|
147
105
|
Filesystem.hpp
|
|
148
|
-
(https://github.com/bin-build/filesystem)
|
|
149
106
|
|
|
107
|
+
(https://github.com/bin-build/filesystem)
|
|
150
108
|
Copyright (c) 2015-2017, Wenzel Jakob
|
|
151
109
|
Copyright (c) 2017, Josh Junon
|
|
152
110
|
All rights reserved.
|
|
111
|
+
|
|
153
112
|
This library is distributed under the terms of a BSD 2-Clause License (https://github.com/bin-build/filesystem/blob/master/LICENSE)
|
|
154
113
|
|
|
155
114
|
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
@@ -163,43 +122,61 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
163
122
|
|
|
164
123
|
JSON for Modern C++
|
|
165
124
|
|
|
166
|
-
Version 3.1
|
|
125
|
+
Version 3.6.1
|
|
167
126
|
(https://github.com/nlohmann/json)
|
|
168
|
-
|
|
169
|
-
Copyright (c) 2013-2018 Niels Lohmann <http://nlohmann.me>.
|
|
127
|
+
Copyright (c) 2013-2018 Niels Lohmann http://nlohmann.me.
|
|
170
128
|
This library is distributed under the terms of a MIT License (https://github.com/nlohmann/json/blob/develop/LICENSE.MIT)
|
|
171
129
|
|
|
172
130
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
173
131
|
|
|
132
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
133
|
+
|
|
134
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
135
|
+
|
|
136
|
+
----------------------------------------------------------------------------------------
|
|
137
|
+
|
|
138
|
+
Nameof C++
|
|
139
|
+
|
|
140
|
+
Version 0.8.3
|
|
141
|
+
(https://github.com/Neargye/nameof)
|
|
142
|
+
|
|
143
|
+
MIT License
|
|
144
|
+
|
|
145
|
+
Copyright (c) 2016, 2018 - 2019 Daniil Goncharov
|
|
146
|
+
|
|
147
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
148
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
149
|
+
in the Software without restriction, including without limitation the rights
|
|
150
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
151
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
152
|
+
furnished to do so, subject to the following conditions:
|
|
153
|
+
|
|
174
154
|
The above copyright notice and this permission notice shall be included in all
|
|
175
155
|
copies or substantial portions of the Software.
|
|
176
156
|
|
|
177
|
-
THE SOFTWARE
|
|
157
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
158
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
159
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
160
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
161
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
162
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
163
|
+
SOFTWARE.
|
|
178
164
|
|
|
179
165
|
----------------------------------------------------------------------------------------
|
|
180
166
|
|
|
181
|
-
|
|
167
|
+
ZXing-C++, C++ port of ZXing
|
|
182
168
|
|
|
183
|
-
|
|
184
|
-
(https://github.com/opencv/opencv)
|
|
169
|
+
(https://github.com/nu-book/zxing-cpp)
|
|
185
170
|
|
|
186
|
-
Copyright
|
|
187
|
-
Copyright
|
|
188
|
-
Copyright (C) 2009-2016, NVIDIA Corporation, all rights reserved.
|
|
189
|
-
Copyright (C) 2010-2013, Advanced Micro Devices, Inc., all rights reserved.
|
|
190
|
-
Copyright (C) 2015-2020, OpenCV Foundation, all rights reserved.
|
|
191
|
-
Copyright (C) 2008-2016, Itseez Inc., all rights reserved.
|
|
192
|
-
Copyright (C) 2019-2020, Xperience AI, all rights reserved.
|
|
193
|
-
Copyright (C) 2019-2020, Shenzhen Institute of Artificial Intelligence and
|
|
194
|
-
Robotics for Society, all rights reserved.
|
|
171
|
+
Copyright 2016 Nu-book Inc.
|
|
172
|
+
Copyright 2016 ZXing authors
|
|
195
173
|
|
|
196
|
-
Third party copyrights are property of their respective owners.
|
|
197
174
|
|
|
198
175
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
199
176
|
you may not use this file except in compliance with the License.
|
|
200
177
|
You may obtain a copy of the License at
|
|
201
178
|
|
|
202
|
-
|
|
179
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
203
180
|
|
|
204
181
|
Unless required by applicable law or agreed to in writing, software
|
|
205
182
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
@@ -209,175 +186,164 @@ limitations under the License.
|
|
|
209
186
|
|
|
210
187
|
----------------------------------------------------------------------------------------
|
|
211
188
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
Version commit 47b4b19af2
|
|
215
|
-
(https://github.com/google/skia)
|
|
216
|
-
|
|
217
|
-
Copyright (c) 2011 Google Inc. All rights reserved.
|
|
218
|
-
|
|
219
|
-
Redistribution and use in source and binary forms, with or without
|
|
220
|
-
modification, are permitted provided that the following conditions are
|
|
221
|
-
met:
|
|
222
|
-
|
|
223
|
-
* Redistributions of source code must retain the above copyright
|
|
224
|
-
notice, this list of conditions and the following disclaimer.
|
|
225
|
-
|
|
226
|
-
* Redistributions in binary form must reproduce the above copyright
|
|
227
|
-
notice, this list of conditions and the following disclaimer in
|
|
228
|
-
the documentation and/or other materials provided with the
|
|
229
|
-
distribution.
|
|
230
|
-
|
|
231
|
-
* Neither the name of the copyright holder nor the names of its
|
|
232
|
-
contributors may be used to endorse or promote products derived
|
|
233
|
-
from this software without specific prior written permission.
|
|
234
|
-
|
|
235
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
236
|
-
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
237
|
-
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
238
|
-
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
239
|
-
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
240
|
-
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
241
|
-
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
242
|
-
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
243
|
-
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
244
|
-
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
245
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
189
|
+
TensorFlow
|
|
246
190
|
|
|
247
|
-
|
|
191
|
+
Version based on GitHub commit a4dfb8d1a71
|
|
192
|
+
(https://github.com/tensorflow/tensorflow)
|
|
248
193
|
|
|
249
|
-
|
|
194
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
195
|
+
you may not use this file except in compliance with the License.
|
|
196
|
+
You may obtain a copy of the License at
|
|
250
197
|
|
|
251
|
-
|
|
252
|
-
(https://github.com/opencv/opencv/tree/4.5.0/3rdparty/libtiff)
|
|
198
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
253
199
|
|
|
254
|
-
|
|
255
|
-
|
|
200
|
+
Unless required by applicable law or agreed to in writing, software
|
|
201
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
202
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
203
|
+
See the License for the specific language governing permissions and
|
|
204
|
+
limitations under the License.
|
|
256
205
|
|
|
257
|
-
|
|
258
|
-
its documentation for any purpose is hereby granted without fee, provided
|
|
259
|
-
that (i) the above copyright notices and this permission notice appear in
|
|
260
|
-
all copies of the software and related documentation, and (ii) the names of
|
|
261
|
-
Sam Leffler and Silicon Graphics may not be used in any advertising or
|
|
262
|
-
publicity relating to the software without the specific, prior written
|
|
263
|
-
permission of Sam Leffler and Silicon Graphics.
|
|
206
|
+
----------------------------------------------------------------------------------------
|
|
264
207
|
|
|
265
|
-
|
|
266
|
-
EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
|
|
267
|
-
WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
|
|
208
|
+
xsimd
|
|
268
209
|
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
|
|
272
|
-
WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
|
|
273
|
-
LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
274
|
-
OF THIS SOFTWARE.
|
|
210
|
+
Version based on GitHub commit 3d17850
|
|
211
|
+
(https://github.com/xtensor-stack/xsimd)
|
|
275
212
|
|
|
276
|
-
|
|
213
|
+
Copyright (c) 2016, Johan Mabille, Sylvain Corlay, Wolf Vollprecht and Martin Renou
|
|
214
|
+
Copyright (c) 2016, QuantStack
|
|
215
|
+
All rights reserved.
|
|
277
216
|
|
|
278
|
-
|
|
217
|
+
Redistribution and use in source and binary forms, with or without
|
|
218
|
+
modification, are permitted provided that the following conditions are met:
|
|
279
219
|
|
|
280
|
-
|
|
281
|
-
|
|
220
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
221
|
+
list of conditions and the following disclaimer.
|
|
282
222
|
|
|
283
|
-
|
|
223
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
224
|
+
this list of conditions and the following disclaimer in the documentation
|
|
225
|
+
and/or other materials provided with the distribution.
|
|
284
226
|
|
|
285
|
-
|
|
227
|
+
* Neither the name of the copyright holder nor the names of its
|
|
228
|
+
contributors may be used to endorse or promote products derived from
|
|
229
|
+
this software without specific prior written permission.
|
|
286
230
|
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
works are solely in the form of machine-executable object code generated by a source
|
|
298
|
-
language processor.
|
|
299
|
-
|
|
300
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
301
|
-
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
302
|
-
PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE
|
|
303
|
-
DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN
|
|
304
|
-
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
|
|
305
|
-
OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
231
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
232
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
233
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
234
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
235
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
236
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
237
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
238
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
239
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
240
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
306
241
|
|
|
307
242
|
----------------------------------------------------------------------------------------
|
|
308
243
|
|
|
309
|
-
|
|
244
|
+
xtl
|
|
310
245
|
|
|
311
|
-
Version
|
|
312
|
-
(https://github.com/
|
|
246
|
+
Version based on GitHub commit e0f0066
|
|
247
|
+
(https://github.com/xtensor-stack/xtl)
|
|
313
248
|
|
|
314
|
-
|
|
315
|
-
|
|
249
|
+
BSD 3-Clause License
|
|
250
|
+
|
|
251
|
+
Copyright (c) 2017, Sylvain Corlay, Johan Mabille and Wolf Vollprecht
|
|
252
|
+
Copyright (c) 2017, QuantStack
|
|
253
|
+
All rights reserved.
|
|
316
254
|
|
|
317
255
|
Redistribution and use in source and binary forms, with or without
|
|
318
256
|
modification, are permitted provided that the following conditions are met:
|
|
319
257
|
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
258
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
259
|
+
list of conditions and the following disclaimer.
|
|
260
|
+
|
|
261
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
323
262
|
this list of conditions and the following disclaimer in the documentation
|
|
324
263
|
and/or other materials provided with the distribution.
|
|
325
|
-
- Neither the name of the libjpeg-turbo Project nor the names of its
|
|
326
|
-
contributors may be used to endorse or promote products derived from this
|
|
327
|
-
software without specific prior written permission.
|
|
328
264
|
|
|
329
|
-
|
|
265
|
+
* Neither the name of the copyright holder nor the names of its
|
|
266
|
+
contributors may be used to endorse or promote products derived from
|
|
267
|
+
this software without specific prior written permission.
|
|
268
|
+
|
|
269
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
330
270
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
331
|
-
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
POSSIBILITY OF SUCH DAMAGE.
|
|
271
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
272
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
273
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
274
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
275
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
276
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
277
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
278
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
340
279
|
|
|
341
280
|
----------------------------------------------------------------------------------------
|
|
342
281
|
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
Version commit dc05a7a
|
|
346
|
-
(https://github.com/tensorflow/tensorflow)
|
|
282
|
+
xtensor
|
|
347
283
|
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
|
351
|
-
you may not use this file except in compliance with the License.
|
|
352
|
-
You may obtain a copy of the License at
|
|
284
|
+
Version based on GitHub commit be35a26
|
|
285
|
+
(https://github.com/doo/xtensor)
|
|
353
286
|
|
|
354
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
|
355
287
|
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
See the License for the specific language governing permissions and
|
|
360
|
-
limitations under the License.
|
|
361
|
-
|
|
362
|
-
----------------------------------------------------------------------------------------
|
|
363
|
-
|
|
364
|
-
ZXing-C++, C++ port of ZXing
|
|
288
|
+
Copyright (c) 2016, Johan Mabille, Sylvain Corlay and Wolf Vollprecht
|
|
289
|
+
Copyright (c) 2016, QuantStack
|
|
290
|
+
All rights reserved.
|
|
365
291
|
|
|
366
|
-
|
|
292
|
+
Redistribution and use in source and binary forms, with or without
|
|
293
|
+
modification, are permitted provided that the following conditions are met:
|
|
367
294
|
|
|
368
|
-
|
|
369
|
-
|
|
295
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
296
|
+
list of conditions and the following disclaimer.
|
|
370
297
|
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
298
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
299
|
+
this list of conditions and the following disclaimer in the documentation
|
|
300
|
+
and/or other materials provided with the distribution.
|
|
374
301
|
|
|
375
|
-
|
|
302
|
+
* Neither the name of the copyright holder nor the names of its
|
|
303
|
+
contributors may be used to endorse or promote products derived from
|
|
304
|
+
this software without specific prior written permission.
|
|
376
305
|
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
306
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
307
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
308
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
309
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
310
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
311
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
312
|
+
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
313
|
+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
314
|
+
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
315
|
+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
382
316
|
|
|
383
317
|
----------------------------------------------------------------------------------------
|
|
318
|
+
|
|
319
|
+
XNNPACK
|
|
320
|
+
|
|
321
|
+
Version based on GitHub commit fb8d1f1b2
|
|
322
|
+
(https://github.com/google/XNNPACK)
|
|
323
|
+
|
|
324
|
+
BSD License
|
|
325
|
+
|
|
326
|
+
For XNNPACK software
|
|
327
|
+
Copyright (c) Facebook, Inc. and its affiliates. All rights reserved.
|
|
328
|
+
Copyright 2019 Google LLC
|
|
329
|
+
|
|
330
|
+
Redistribution and use in source and binary forms, with or without modification,
|
|
331
|
+
are permitted provided that the following conditions are met:
|
|
332
|
+
* Redistributions of source code must retain the above copyright notice, this
|
|
333
|
+
list of conditions and the following disclaimer.
|
|
334
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
|
335
|
+
this list of conditions and the following disclaimer in the documentation
|
|
336
|
+
and/or other materials provided with the distribution.
|
|
337
|
+
* Neither the name Facebook nor the names of its contributors may be used to
|
|
338
|
+
endorse or promote products derived from this software without specific
|
|
339
|
+
prior written permission.
|
|
340
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
341
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
342
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
343
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
|
|
344
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
345
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
346
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
|
347
|
+
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
348
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
349
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|