Skip to content

Commit 8564fd5

Browse files
Update README
1 parent a6a099c commit 8564fd5

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ Features :
1111
- Math functions: rand, pi, cos, sin, tan.
1212
- Where clause with boolean operators : and / or.
1313
- Lag and lead to get relative pixels from a position.
14+
- Simple editor with execution of query in real time.
15+
16+
[See Examples for syntax](https://github.com/OlivierCavadenti/picsql#examples)
1417

1518
### Launch with command line
1619

@@ -20,6 +23,34 @@ picsql.jar "select r,g,b from ./test.bmp" "./output.bmp"
2023

2124
Can also be used like a library by including JAR (doc coming soon).
2225

26+
### Current version : 1.0.1
27+
28+
- Load a grid of a same picture with syntax :
29+
```sql
30+
select r, g, b
31+
from (./examples/face.bmp, 5, 5)
32+
```
33+
Picture face.bmp is loaded 25 times in a grid of 5 x 5.
34+
35+
- Launch a simple GUI by add "--gui" flag:
36+
37+
```bash
38+
picsql.jar --gui
39+
```
40+
41+
![](editor.jpg)
42+
43+
- Fixes and Gradle updates.
44+
45+
### Version 1.0.0
46+
47+
- Access to r,g,b channels and x,y position.
48+
- FROM can load picture, region of picture, colored rectangle or data from subquery.
49+
- Math operators : *, /, +, -, %.
50+
- Math functions: rand, pi, cos, sin, tan.
51+
- Where clause with boolean operators : and / or.
52+
- Lag and lead to get relative pixels from a position.
53+
2354
### Examples
2455

2556
**Test pictures :**

editor.jpg

66 KB
Loading

0 commit comments

Comments
 (0)