https://github.com/donydchen/landmark-tool
A simple image landmark tool written in pyqt.
https://github.com/donydchen/landmark-tool
landmark-tool pyqt
Last synced: 23 days ago
JSON representation
A simple image landmark tool written in pyqt.
- Host: GitHub
- URL: https://github.com/donydchen/landmark-tool
- Owner: donydchen
- Created: 2017-04-20T08:29:05.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-29T18:00:14.000Z (about 8 years ago)
- Last Synced: 2025-04-20T05:32:38.354Z (about 1 month ago)
- Topics: landmark-tool, pyqt
- Language: Python
- Size: 441 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# landmark-tool
Landmark Tool is a simple application that helps you to landmark images## Screenshots

## Install
### For Ubuntu (based) distro
Download latest deb package from release page, then cd to the location of the downloaded package, run the following command
```sh
sudo dpkg -i landmark*
sudo apt -f install
```After installed, search "landmark-tool" in your system launch center, or
Run `landmark-tool` from your terminal.### For other platform
Setup the develop environment for `python2.7` and `python-qt4`, then pull this repository, cd to '/src' and run the following command
```sh
python landmark.py
```## How to
* Click "Open Folder" to choose your dataset
* Pick up an image from the list
* Left click on the selected image to make landmark
* Click "Save File" to save the landmarks to json fileAll the landmarks will be first stored in a python dictionary, and then dump to a json file which should be located at the root of your provided folder(dataset), named as "landmark.json"
## LICENSE
MIT License
Copyright (c) 2017 [email protected]
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.