Skip to content

Commit b4ba06e

Browse files
committed
Markdownized README
1 parent fbb0c4e commit b4ba06e

File tree

2 files changed

+55
-52
lines changed

2 files changed

+55
-52
lines changed

README

Lines changed: 0 additions & 52 deletions
This file was deleted.

README.md

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

0 commit comments

Comments
 (0)