https://github.com/hacking-papa/nuricame-web
Make a contour by pictures, Web version.
https://github.com/hacking-papa/nuricame-web
alpinejs bulma-css google-app-engine opencv python
Last synced: 29 days ago
JSON representation
Make a contour by pictures, Web version.
- Host: GitHub
- URL: https://github.com/hacking-papa/nuricame-web
- Owner: hacking-papa
- License: other
- Created: 2020-04-10T17:00:56.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-01-26T04:59:25.000Z (over 4 years ago)
- Last Synced: 2025-01-13T10:11:28.526Z (6 months ago)
- Topics: alpinejs, bulma-css, google-app-engine, opencv, python
- Language: JavaScript
- Size: 67.2 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# nuricame-web


Make a contour by pictures, Web version.
- [Dependencies](#dependencies)
- [How to](#how-to)
- [Develop](#develop)
- [Launch](#launch)
- [Test](#test)
- [Deploy](#deploy)
- [Misc](#misc)
- [Holistically-Nested Edge Detection](#holistically-nested-edge-detection)
- [License](#license)## Dependencies
- Google App Engine
- Python3
- OpenCV
- NumPy
- [Bulma CSS](https://bulma.io/)
- [Alpine.js](https://github.com/alpinejs/alpine)## How to
### Develop
```shell
export GOOGLE_APPLICATION_CREDENTIALS=[path-to-your-service-accounts-private-key]
``````shell
pip install --upgrade -r requirements.txt
```### Launch
```shell
python main.py
```### Test
```shell
pytest
```The above command will search for all `test_*.py` to test.
### Deploy
```shell
gcloud app deploy --project [project-id]
```And then, you can browse `https://[project-id].appspot.com/`, or type below.
```shell
gcloud app browse --project [project-id]
```If you want to check logs, type below.
```shell
gcloud app logs tail -s default
```## Misc
### [Holistically-Nested Edge Detection](https://github.com/s9xie/hed)
Special thanks to Saining Xie.
```text
@InProceedings{xie15hed,
author = {"Xie, Saining and Tu, Zhuowen"},
Title = {Holistically-Nested Edge Detection},
Booktitle = "Proceedings of IEEE International Conference on Computer Vision",
Year = {2015},
}
```
### License
Published in [GOOD HACKING PAPA LICENSE](LICENSE.md) made based on [CC-BY-NC](https://creativecommons.org/licenses/by-nc/4.0/legalcode.ja).