-
Notifications
You must be signed in to change notification settings - Fork 924
[Plugin][WIP] Implement OpenCV-mini #2403
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
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Codecov Report
@@ Coverage Diff @@
## master #2403 +/- ##
=======================================
Coverage 81.20% 81.20%
=======================================
Files 148 148
Lines 21473 21473
Branches 4313 4313
=======================================
Hits 17437 17437
Misses 2877 2877
Partials 1159 1159 see 2 files with indirect coverage changes 📣 We’re building smart automated test selection to slash your CI/CD build times. Learn more |
039a8e1 to
88eb650
Compare
e666c7e to
ea80c7a
Compare
ea80c7a to
21e5e04
Compare
Member
|
Flows summarize |
This comment was marked as off-topic.
This comment was marked as off-topic.
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
1. imdecode 2. imshow 3. waitkey The `cv::Mat` will be cached in a map & wasm module will only get handle instead of passing huge multi-dim array (`cv::Mat`) around the host & wasm. Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
21e5e04 to
d71cf24
Compare
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
`imwrite` will put matrix into a file, and hence. we can check the transformer result `blur` do simple blurring, this is the first transformer we introduce Signed-off-by: Lîm Tsú-thuàn <[email protected]>
The function will write compressed image back into instance's buffer Signed-off-by: Lîm Tsú-thuàn <[email protected]>
NOTE, this is a normalize function from 77051da#diff-3333d926ca87cf4285bfcd6deae45ee310307be66fca8a4ca6f0f8a946743fccR50-R54 not `cv::normalize` Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Signed-off-by: Lîm Tsú-thuàn <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
c-CI
An issue related to CI
c-Plugin
An issue related to WasmEdge Plugin
c-Test
An issue/PR to enhance the test suite
enhancement
New feature or request
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Feature
transform
normalize: notcv::normalize, from 77051da#diff-3333d926ca87cf4285bfcd6deae45ee310307be66fca8a4ca6f0f8a946743fccR50-R54blur: blurring functionbilinear_sampling: bilinear samplerread/write
imdecode: from image from instance bufferimencode: put image into instance bufferimwrite: write image into filemisc
imshow: show image (broken on MacOS)waitkey: wait any keypressExample: https://github.com/second-state/opencvmini-example