• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

config/H03-May-2022-1,8351,576

docsrc/H03-May-2022-7,4966,002

include/vigra/H19-Oct-2018-199,681115,108

src/H03-May-2022-23,83314,929

test/H03-May-2022-79,84064,582

vigranumpy/H03-May-2022-34,57225,849

.gitignoreH A D19-Oct-2018293 3534

README.mdH A D19-Oct-20182.6 KiB5837

azure-pipelines.ymlH A D19-Oct-20188 KiB167165

README.md

1VIGRA Computer Vision Library
2=============================
3
4[![Build Status](https://dev.azure.com/ullrichkoethe/vigra/_apis/build/status/ukoethe.vigra)](https://dev.azure.com/ullrichkoethe/vigra/_build/latest?definitionId=1)
5
6                Copyright 1998-2013 by Ullrich Koethe
7
8
9    This file is part of the VIGRA computer vision library.
10    You may use, modify, and distribute this software according
11    to the terms stated in the LICENSE.txt file included in
12    the VIGRA distribution.
13
14    The VIGRA Website is
15        http://ukoethe.github.io/vigra/
16    Please direct questions, bug reports, and contributions to
17        ullrich.koethe@iwr.uni-heidelberg.de    or
18        vigra@informatik.uni-hamburg.de
19
20
21    THIS SOFTWARE IS PROVIDED AS IS AND WITHOUT ANY EXPRESS OR
22    IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
23    WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
24
25
26Installation
27------------
28
29Installation instructions can be found in the file
30  $VIGRA_PATH/doc/vigra/Installation.html
31If the documentation has not yet been generated (e.g. when you build from a development
32snapshot), you find these instructions in
33  $VIGRA_PATH/docsrc/installation.dxx
34or online at
35  http://ukoethe.github.io/vigra/doc-release/vigra/Installation.html
36
37Documentation
38-------------
39
40If you downloaded an official release, the documentation can be found in `$VIGRA_PATH/doc/vigra/`, the start file
41is `$VIGRA_PATH/doc/vigra/index.html` or online at http://ukoethe.github.io/vigra/#documentation.
42
43When you use the development version from github, you can generate documentation by `make doc`.
44
45Download
46--------
47
48VIGRA can be downloaded at http://ukoethe.github.io/vigra/#download. The official development
49repository is at https://github.com/ukoethe/vigra
50
51What is VIGRA
52-------------
53
54VIGRA is a computer vision library that puts its main emphasis on flexible algorithms, because algorithms represent the principal know-how of this field. The library was consequently built using generic programming as introduced by Stepanov and Musser and exemplified in the C++ Standard Template Library. By writing a few adapters (image iterators and accessors) you can use VIGRA's algorithms on top of your data structures, within your environment. Alternatively, you can also use the data structures provided within VIGRA, which can be easily adapted to a wide range of applications. VIGRA's flexibility comes almost for free: Since the design uses compile-time polymorphism (templates), performance of the compiled program approaches that of a traditional, hand tuned, inflexible, solution.
55
56
57
58