-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathREADME
More file actions
52 lines (37 loc) · 1.81 KB
/
README
File metadata and controls
52 lines (37 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
PostPic: A PostgreSQL extension for image-processing
====================================================
PostPic is an extension for the open source PostgreSQL dbms that enables
image processing inside the database, like PostGIS does for spatial data.
It adds the new 'image' type to the SQL, and several functions to process
images and to extract their attributes.
Eg.
select * from images where date(the_img) > '2009-01-01'::date
and size(the_img) > 1600;
Traditional relational clauses can be combined in queries with image-related
ones, and basic image processing can be performed in SQL.
Resources
---------
PostPic is hosted at GitHub <https://github.com/drotiro/postpic>.
There you can find all the code releases and the project Wiki
<http://wiki.github.com/drotiro/postpic/>, with detailed documentation
about the project.
Contents of this package
------------------------
This package contains the following:
* server: sources for the server extension
* utils: utilities for client-side loading of images, etc.
* jdbc: mapping for the new type, enhances the postgresql jdbc driver
* doc: instruction for building the sources
* examples: example programs and sql scripts
Copyright and license
---------------------
PostPic is Copyright (C) 2010 Domenico Rotiroti.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as
published by the Free Software Foundation, version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
A copy of the GNU Lesser General Public License is included in the
source distribution of this software.