Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/harunkurtdev/dart_opencv_sdk
https://github.com/harunkurtdev/dart_opencv_sdk
dart-opencv dart-opencv-sdk dartlang flutter-opencv opencv opencv-dart opencv-flutter
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/harunkurtdev/dart_opencv_sdk
- Owner: harunkurtdev
- Created: 2023-06-18T19:06:49.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-27T21:13:24.000Z (about 1 year ago)
- Last Synced: 2024-04-20T14:23:09.840Z (7 months ago)
- Topics: dart-opencv, dart-opencv-sdk, dartlang, flutter-opencv, opencv, opencv-dart, opencv-flutter
- Language: Dart
- Homepage:
- Size: 3.64 MB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# OpenCV SDK for Dart
The OpenCV SDK for Dart is a powerful and versatile computer vision library that allows developers to integrate OpenCV functionality into their Dart applications. This SDK provides a bridge between Dart and the OpenCV library, enabling you to leverage advanced computer vision techniques seamlessly.
## Features
- **High-Performance:** Benefit from the high-performance capabilities of the OpenCV library directly from your Dart applications.
- **Wide Range of Algorithms:** Access a comprehensive collection of image processing and computer vision algorithms, including filtering, feature detection, object tracking, and more.
- **Easy Integration:** The SDK provides a user-friendly interface to easily integrate OpenCV functionalities into your Dart projects.
## TODO
TODO:
- [ ] Image Reading and Writing:
- [X] Read image: `imread()`
- [X] Write image: `imwrite()`- [ ] Image Properties:
- [X] Get image size: `size()`
- [ ] Determine image type: `type()`
- [ ] Access and modify pixel values on the image: `at()`, `set()`- [ ] Morphological Operation:
- [X] Eroding ![](./example/morphological/morphological_erode.png)
- [X] Dilate ![](./example/morphological/morphological_dilate.png)- [ ] Color Conversions:
- [X] Convert color spaces: `cvtColor()` for grayscale
- [ ] Define constants for color space conversions: `COLOR_*`- [ ] Filtering and Edge Detection:
- [X] Gaussian blur: `GaussianBlur()`
- [X] Average blur: `Average()`
- [X] Bileteral blur: `Bileteral()`
- [X] Average blur: `Average()`
- [X] Median blur: `medianBlur()`- [ ] Edge Detection:
- [X] Edge detection: `Canny()`
- [X] Laplace: `Laplace()`
- [X] Sobel: `Sobel()`- [ ] Geometric Transformations:
- [ ] Perspective transformation: `warpPerspective()`
- [X] Scaling: `resize()`
- [X] Rotation: `rotate()`- [X] Hough Detection Transformations:
- [X] Hough Circle:
- [X] Hough Line:- [ ] Template Matching:
- [ ] Template matching operation: `matchTemplate()`- [ ] Contour Detection:
- [ ] Contour detection: `findContours()`
- [ ] Compute contour properties: `contourArea()`, `arcLength()`, `boundingRect()`- [ ] Object Detection:
- [ ] Face detection: `CascadeClassifier()`
- [ ] Object detection: `detectMultiScale()`- [ ] Computational Operations:
- [ ] Mathematical operations: `add()`, `subtract()`, `multiply()`, `divide()`
- [ ] Histogram calculation: `calcHist()`- [ ] Image Processing Helpers:
- [ ] Bitwise masking operations: `bitwise_and()`, `bitwise_or()`, `bitwise_not()`
- [ ] Splitting and merging images: `split()`, `merge()`
- [ ] Defining Regions of Interest (ROI): `Rect()`- [ ] Graphical User Interface (GUI) Helpers:
- [ ] Display image on the screen: `imshow()`
- [ ] Detect keyboard or mouse interactions: `waitKey()`## Usage
TODO: Include short and useful examples for package users. Add longer examples
to `/example` folder.