https://github.com/ryosukedtomita/concat_figure
csvに指定したファイルパスにある画像を連結する。
https://github.com/ryosukedtomita/concat_figure
csv open-cv python3
Last synced: 30 days ago
JSON representation
csvに指定したファイルパスにある画像を連結する。
- Host: GitHub
- URL: https://github.com/ryosukedtomita/concat_figure
- Owner: RyosukeDTomita
- Created: 2022-01-17T12:10:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-19T08:38:19.000Z (over 4 years ago)
- Last Synced: 2025-03-10T18:53:40.770Z (over 1 year ago)
- Topics: csv, open-cv, python3
- Language: Python
- Homepage:
- Size: 17.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# INDEX
- [ABOUT](#ABOUT)
- [HOWTOUSE](#HOWTOUSE)
- [INSTALATION](#INSTALATION)
- [ENVIRONMENT](#ENVIRONMENT)
# ABOUT
This program can concat figures by order which csvfile order.
```
2021-01-06_12_ldr24.png,2021-01-07_00_ldr24.png,2021-01-07_12_ldr24.png
2021-01-06_12_850.png,2021-01-07_00_850.png,2021-01-07_12_850.png
2021-01-06_12_500.png,2021-01-07_00_500.png,2021-01-07_12_500.png
2021-01-06_12_300.png,2021-01-07_00_300.png,2021-01-07_12_300.png
```

# HOWTOUSE
- figures are saved the directory which saved `csvfile`.
- `csvfile` express the order of figures.
- if `--save`is not set, default output name is `concat.png`.
- -p: csvfile contents expressed figure path.
```shell
python3 concat_fig.py --file ./tryme/sample.csv --save
python3 concat_fig.py --file ./tryme/sample.csv --save -p
```
# INSTALATION
## Install
```
python3 setup.py install
```
## uninstall
```shell
python setup.py develop -u
pip uninstall concatfig
```
# ENVIRONMENT
I tested the following environment.
- Python3.8
- Ubuntu 20.04 LTS
see [requirement.txt](./requirements.txt)