Skip to content

Support local build, support ffmpeg for windows, linux, macos, android #262

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 31 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
cc73b64
finish android
rainyl Oct 10, 2024
b0dc59d
Merge branch 'main' of https://github.com/rainyl/opencv_dart into spl…
rainyl Oct 11, 2024
c9fd153
fix examples workflow
rainyl Oct 11, 2024
05691b8
fix
rainyl Oct 11, 2024
d198c72
fix, enable building for android
rainyl Oct 11, 2024
81f3aaa
fix
rainyl Oct 11, 2024
e9983e4
fix
rainyl Oct 11, 2024
55dd819
add podfile
rainyl Oct 11, 2024
931cc63
finish linux
rainyl Oct 14, 2024
e2eba82
remove build actions
rainyl Oct 14, 2024
3827203
update pubignore
rainyl Oct 15, 2024
28f1008
finish Mat and calib3d
rainyl Oct 18, 2024
81cfc18
finish core
rainyl Oct 19, 2024
189dac9
finish aruco,imghash
rainyl Oct 19, 2024
e7113d5
finish quality
rainyl Oct 19, 2024
d202938
finish contrib
rainyl Oct 20, 2024
fc614cf
finish dnn+features2d
rainyl Oct 20, 2024
b7085a7
fnish part of imgproc, imgcodecs
rainyl Oct 20, 2024
adfee11
finish imgproc
rainyl Oct 20, 2024
680f562
finish objdetect
rainyl Oct 20, 2024
fd018de
finish photo
rainyl Oct 20, 2024
c5b8dcb
finish stitching, video, ready for test
rainyl Oct 21, 2024
4bb9f18
use VecPoint2f for findChessboardCorners drawChessboardCorners
rainyl Oct 21, 2024
0fa6dd8
some fix
rainyl Oct 22, 2024
dd7ccfd
some fix
rainyl Oct 22, 2024
93bdf73
fix tests
rainyl Oct 22, 2024
a657c81
fix tests
rainyl Oct 22, 2024
914f296
fix actions
rainyl Oct 22, 2024
61ab1cb
fix examples
rainyl Oct 22, 2024
2215799
change the dep of dartcv4 to 0.0.1
rainyl Oct 23, 2024
167c105
add dnn for opencv_core.podspec
rainyl Oct 23, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
63 changes: 0 additions & 63 deletions .github/workflows/android.yaml

This file was deleted.

174 changes: 0 additions & 174 deletions .github/workflows/apple.yaml

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: coverage

on:
push:
branches: ["main"]
pull_request:
branches: [ "main" ]

jobs:
windows:
name: windows
runs-on: windows-2019
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: robinraju/[email protected]
with:
repository: "rainyl/opencv_dart"
tag: "dnn_test_files"
fileName: "models.zip"
out-file-path: "packages/dartcv/test/"
extract: true
- uses: robinraju/[email protected]
with:
repository: "rainyl/dartcv"
latest: true
fileName: "libdartcv-windows-x64-vs2019.tar.gz"
out-file-path: "packages/dartcv/libdartcv"
extract: true
- uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: test coverage
run: |
cd "${{github.workspace}}\packages\dartcv"
$env:PATH="${{github.workspace}}\packages\dartcv\libdartcv\lib;$env:PATH"
dart pub global activate coverage
dart pub global run coverage:test_with_coverage --package . --package-name dartcv
- name: Upload to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: rainyl/opencv_dart
file: ./coverage/lcov.info
Loading
Loading