Skip to content

Latest commit

 

History

History
75 lines (46 loc) · 1.33 KB

CHANGELOG.md

File metadata and controls

75 lines (46 loc) · 1.33 KB

(NEXT) Version 1.0.6

Version 1.0.5

  • Convolution Mask function

  • Discr Function

  • Flip function

  • Butter function

Version 1.0.4 : hotfix

Version 1.0.3

  • Create GIF animation with syntax :
select lag(r, 5, t%20), (g*t)%255, (t * 10) % 255 
from (./examples/face.bmp, 50)

Create a GIF by applying 50 times the query on the same picture, with increments "t" from 0 to 50.

Run query like that :

java -jar picsql.jar "select lag(r, 5, t%20), (g*t)%255, (t * 10) % 255 from (./examples/face.bmp, 50)" "test.gif"

Result:

Version 1.0.2

  • Fix subqueries

Version 1.0.1

  • Load a grid of a same picture with syntax :
select r, g, b
from (./examples/face.bmp, 5, 5)

Picture face.bmp is loaded 25 times in a grid of 5 x 5.

  • Launch a simple GUI by add "--gui" flag:
picsql.jar --gui

  • Fixes and Gradle updates.

Version 1.0.0

  • Access to r,g,b channels and x,y position.
  • FROM can load picture, region of picture, colored rectangle or data from subquery.
  • Math operators : *, /, +, -, %.
  • Math functions: rand, pi, cos, sin, tan.
  • Where clause with boolean operators : and / or.
  • Lag and lead to get relative pixels from a position.