Skip to content

Commit b15c353

Browse files
authored
Merge pull request #222 from rainyl/better-vec-list
add asVec() to List extensions
2 parents 62d50b2 + b7b0bce commit b15c353

Some content is hidden

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

79 files changed

+357
-25
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [yyyy] [name of copyright owner]
189+
Copyright [2024] [rainyl]
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import tarfile
77
from pathlib import Path
88

9-
OPENCV_VERSION = "4.10.0+4"
9+
OPENCV_VERSION = "4.10.0+5"
1010
OPENCV_FILES_URL = (
1111
f"https://github.com/rainyl/opencv.full/releases/download/{OPENCV_VERSION}"
1212
)

lib/calib3d.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2024, rainyl and all contributors. All rights reserved.
2+
// Use of this source code is governed by a Apache-2.0 license
3+
// that can be found in the LICENSE file.
4+
15
library cv.calib3d;
26

37
export 'src/calib3d/calib3d.dart';

lib/contrib.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2024, rainyl and all contributors. All rights reserved.
2+
// Use of this source code is governed by a Apache-2.0 license
3+
// that can be found in the LICENSE file.
4+
15
library cv.contrib;
26

37
export 'src/contrib/aruco.dart';

lib/core.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2024, rainyl and all contributors. All rights reserved.
2+
// Use of this source code is governed by a Apache-2.0 license
3+
// that can be found in the LICENSE file.
4+
15
library cv.core;
26

37
export 'src/core/base.dart';

lib/dnn.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2024, rainyl and all contributors. All rights reserved.
2+
// Use of this source code is governed by a Apache-2.0 license
3+
// that can be found in the LICENSE file.
4+
15
library cv.dnn;
26

37
export 'src/dnn/asyncarray.dart';

lib/features2d.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2024, rainyl and all contributors. All rights reserved.
2+
// Use of this source code is governed by a Apache-2.0 license
3+
// that can be found in the LICENSE file.
4+
15
library cv.features2d;
26

37
export 'src/features2d/features2d.dart';

lib/gapi.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2024, rainyl and all contributors. All rights reserved.
2+
// Use of this source code is governed by a Apache-2.0 license
3+
// that can be found in the LICENSE file.
4+
15
library cv.gapi;
26

37
export 'src/gapi/gapi.dart';

lib/highgui.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2024, rainyl and all contributors. All rights reserved.
2+
// Use of this source code is governed by a Apache-2.0 license
3+
// that can be found in the LICENSE file.
4+
15
library cv.highgui;
26

37
export 'src/highgui/highgui.dart';

lib/imgcodecs.dart

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Copyright (c) 2024, rainyl and all contributors. All rights reserved.
2+
// Use of this source code is governed by a Apache-2.0 license
3+
// that can be found in the LICENSE file.
4+
15
library cv.imgcodecs;
26

37
export 'src/imgcodecs/imgcodecs.dart';

0 commit comments

Comments
 (0)