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

..03-May-2022-

images/H03-May-2022-

include/H26-Nov-2019-2,9021,165

scripts/H26-Nov-2019-1510

src/H03-May-2022-6,5124,486

ui/H26-Nov-2019-1,7951,790

.gitignoreH A D26-Nov-201960 98

.travis.ymlH A D26-Nov-20191.1 KiB5040

LICENSEH A D26-Nov-201920.6 KiB507355

Makefile.fastH A D26-Nov-20192 KiB5028

README.mdH A D26-Nov-20192.3 KiB7955

presets.xmlH A D26-Nov-2019300.8 KiB5,4534,810

zart.proH A D03-May-20226 KiB240200

zart.qrcH A D26-Nov-2019760 2120

README.md

1```
2   ________   ______           __
3  /\_____  \ /\  _  \         /\ \__
4  \/____//'/'\ \ \L\ \   _ __ \ \ ,_\
5       //'/'  \ \  __ \ /\`'__\\ \ \/
6      //'/'___ \ \ \/\ \\ \ \/  \ \ \_
7      /\_______\\ \_\ \_\\ \_\   \ \__\
8      \/_______/ \/_/\/_/ \/_/    \/__/
9
10```
11
12### Summary
13
14
15ZArt is a computer program whose purpose is to demonstrate the possibilities of
16the G'MIC image processing language by offering the choice of several
17manipulations on a video stream acquired from a webcam. In other words, ZArt is
18a GUI for G'MIC real-time manipulations on the output of a webcam.
19
20### Developers
21
22 * Sebastien Fourey ( http://foureys.users.greyc.fr/ )
23   Project manager / GUI Programming
24
25 * David Tschumperle ( http://tschumperle.users.greyc.fr/ )
26   G'MIC scripts
27
28### Institution
29
30 GREYC Image / CNRS UMR 6072 / FRANCE
31
32 Team web page : https://www.greyc.fr/image
33
34### Licenses
35
36 The C++ source code of ZArt is distributed under the CECILL v.2.0 license (file
37 'Licence_CeCILL_V2-en.txt').  This License is a Free-Software license,
38 compatible with the GPL (using those files in a distributed closed-source
39 project is then forbidden).
40
41 The CeCiLL v.2.0 license ( http://www.cecill.info/index.en.html ) have been
42 created under the supervision of the three biggest research institutions on
43 computer sciences in France :
44
45   * CNRS  ( http://www.cnrs.fr/ )
46   * CEA   ( http://www.cea.fr/ )
47   * INRIA ( http://www.inria.fr/ )
48
49### Dependencies
50
51The following libraries are required to compile/run ZArt:
52
53 * libqt4-dev or libqt5-dev
54 * libcv2.1
55 * libcvaux2.1
56 * libcvaux-dev
57 * libcv-dev
58 * libhighgui2.1
59 * libhighgui-dev
60 * libfftw3-3
61 * libfftw3-dev
62
63 * gtsreamer-ffmpeg plugin is required in order to read video files.
64
65### Qt5/Fedora issue
66
67 You should update to the latest version available of libxkbcommon. Otherwise,
68 the application might exit at any time with the error below.
69
70```
71 zart: symbol lookup error: /usr/lib64/qt5/plugins/platforms/libqxcb.so: \
72 undefined symbol: xkb_state_key_get_utf8
73```
74
75### Tavis CI last build status
76
77 * Master branch (Linux) [![Build Status](https://api.travis-ci.org/c-koi/zart.svg?branch=master)](https://travis-ci.org/c-koi/zart)
78 * Devel branch (Linux) [![Build Status](https://api.travis-ci.org/c-koi/zart.svg?branch=devel)](https://travis-ci.org/c-koi/zart)
79