Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vfdev-5/geoimageviewer
Open-source code to work with geo images
https://github.com/vfdev-5/geoimageviewer
Last synced: 11 days ago
JSON representation
Open-source code to work with geo images
- Host: GitHub
- URL: https://github.com/vfdev-5/geoimageviewer
- Owner: vfdev-5
- License: apache-2.0
- Created: 2014-12-15T15:33:33.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-08-27T12:57:30.000Z (about 8 years ago)
- Last Synced: 2024-10-13T12:14:28.967Z (26 days ago)
- Language: C++
- Homepage:
- Size: 562 KB
- Stars: 4
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
GeoImageViewer
==============The project is inteded to simplify a processing of geographical images. Image viewer is based on Qt QGraphicsScene/View. Image is displayed in its own geometry. Image reading is done using GDAL. Image processing is with OpenCV.
### Project main dependencies:
* Qt ( >= 5)
* GDAL ( == 1.11)
* OpenCV ( >= 2.4)Project contains :
* Library ('Lib/') with bricks to create geo-image aware applications
* Example application ('App/') showing basic usage of the library
* Tests
* Plugins### Installation :
```
$ git clone https://github.com/vfdev-5/GeoImageViewer GIV_source
$ mkdir build_GIV; cd build_GIV
$ cmake -DCMAKE_INSTALL_PREFIX=../GeoImageViewer ../GIV_source/
$ make -j4 install
```### Start demo application
It is necessary that the executable application could find the libraries in `GeoImageViewer/lib`.
```
$ export LD_LIBRARY_PATH=$PWD/GeoImageViewer/lib:$LD_LIBRARY_PATH
$ ./GeoImageViewer/bin/GeoImageViewerApp
```