Thank you for considering to contribute to StableView!
When contributing to this repository, please first discuss the change you wish to make via discuss, issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
To set up a development environment, please follow these steps:
-
Install Rust.
-
Clone the repo
git clone https://github.com/shubhamai/StableView
-
Install opencv-rust on your system.
-
Run
cargo run
to run the application without any optimizations. To run the application fully optimized, add--release
to the command, ie.cargo run --release
-
To build the
.msi
installer for windows -- Install WiX Toolset v3.14.1.
- Install cargo-wix.
- Run
cargo wix
. A new folder will be created intarget
folder containing the.msi
file.
To build stableview on apple silicon
- Download
onnxruntime-osx-arm64-1.18.0.tgz
from ONNX Runtime v1.18.0 and unzip it toassets/onnx_osx
folder.
sudo ORT_LIB_LOCATION=./assets/onnx_osx ORT_STRATEGY=system DYLD_FALLBACK_LIBRARY_PATH=./assets/onnx_osx/lib cargo run --release
You've found a bug in the source code, a mistake in the wiki or maybe you'd like a new feature? Take a look at GitHub Discussions to see if it's already being discussed. You can help us by submitting an issue on GitHub. Before you create an issue, make sure to search the issue archive, your issue may have already been addressed!
- Search our repository for open or closed Pull Requests that relate to your submission. You don't want to duplicate effort.
- Fork the project
- Create your feature branch (
git checkout -b feat/amazing_feature
) - Commit your changes (
git commit -m 'feat: add amazing_feature'
). - Push to the branch (
git push origin feat/amazing_feature
) - Open a Pull Request