You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert

2
2
3
-
OpenCV port to React Native
3
+
A powerful port of **OpenCV** for React Native.
4
4
5
-
## Installation
5
+
> The library is in the early stages of development and not all functions or objects available in OpenCV are supported. Add an issue if you have any problems or questions.
- ⛓️💥 It can also be used on its own without integration
10
14
11
-
##Usage
15
+
### Motivation
12
16
17
+
OpenCV is a popular library for image processing, but quite tricky when it comes to its integration and use in React Native applications. My main goal is to enable simple operations directly from JavaScript code.
Currently, there is a port of the OpenCV library but due to the change in standards when developing React Native applications, I decided to create a new library using an API in C++ that will allow for simpler integration, better performance and readability when used in code.
16
20
17
-
// ...
21
+
### Documentation
18
22
19
-
constresult=awaitmultiply(3, 7);
20
-
```
23
+
Docs are available [here](./docs/pages/index.md).
21
24
25
+
### State of development
22
26
23
-
## Contributing
27
+
Due to the size of the OpenCV library, this port currently only supports selected objects and functions. However, development is simple enough to only require the addition of specific code in C++ using the functionality.
24
28
25
-
See the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.
29
+
List of available functions are available [here](./docs/pages/availablefunctions.md).
26
30
27
-
## License
31
+
---
28
32
29
-
MIT
33
+
### Credits
34
+
Special thanks to:
35
+
- The creators of the [Vision Camera](https://github.com/mrousavy/react-native-vision-camera), [WorkletsCore](https://github.com/margelo/react-native-worklets-core) and [FastTFLite](https://github.com/mrousavy/react-native-fast-tflite) libraries, especially Marc Rousavy - thanks for the amazing libraries.
36
+
- Creator of the [react-native-opencv3](https://github.com/adamgf/react-native-opencv3) library (Adam G. Freeman) - your library was an important starting point for creating my port.
37
+
- Creator of the [TS definition for OpenCV](https://github.com/peteruhnak/opencv-ts) (Peter Uhnak) - the library was an important support for this port.
30
38
31
-
---
32
39
33
-
Made with [create-react-native-library](https://github.com/callstack/react-native-builder-bob)
Copy file name to clipboardExpand all lines: docs/pages/index.md
+2-5
Original file line number
Diff line number
Diff line change
@@ -32,15 +32,12 @@ List of available functions are available [here](./availablefunctions.md).
32
32
33
33
### Credits
34
34
Special thanks to:
35
-
- The creators of the [Vision Camera](https://github.com/mrousavy/react-native-vision-camera) and [WorkletsCore](https://github.com/margelo/react-native-worklets-core) libraries, especially Marc Rousavy - thanks for the amazing libraries.
35
+
- The creators of the [Vision Camera](https://github.com/mrousavy/react-native-vision-camera), [WorkletsCore](https://github.com/margelo/react-native-worklets-core) and [FastTFLite](https://github.com/mrousavy/react-native-fast-tflite) libraries, especially Marc Rousavy - thanks for the amazing libraries.
36
36
- Creator of the [react-native-opencv3](https://github.com/adamgf/react-native-opencv3) library (Adam G. Freeman) - your library was an important starting point for creating my port.
37
37
- Creator of the [TS definition for OpenCV](https://github.com/peteruhnak/opencv-ts) (Peter Uhnak) - the library was an important support for this port.
0 commit comments