Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/image.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Farabet <clement.farabet@gmail.com>2013-06-23 20:01:50 +0400
committerClement Farabet <clement.farabet@gmail.com>2013-06-23 20:01:50 +0400
commit62666b76b299b100c88931745f34c5835c251655 (patch)
tree33bcb1922e6f80ae12a8a446feef1b2f1e72ff03 /image-1.1.alpha-0.rockspec
parentc082a3c418906b2094595a6466d3947339678b07 (diff)
Added new options to image.scale().
* scale(dst, src) : corrected this, to be uniform with other functions * scale(src, size) : size is a string, which is inspired by imagemagick
Diffstat (limited to 'image-1.1.alpha-0.rockspec')
-rw-r--r--image-1.1.alpha-0.rockspec30
1 files changed, 30 insertions, 0 deletions
diff --git a/image-1.1.alpha-0.rockspec b/image-1.1.alpha-0.rockspec
new file mode 100644
index 0000000..d9d2faa
--- /dev/null
+++ b/image-1.1.alpha-0.rockspec
@@ -0,0 +1,30 @@
+package = "image"
+version = "1.1.alpha-0"
+
+source = {
+ url = "git://github.com/clementfarabet/lua---image",
+ tag = "master"
+}
+
+description = {
+ summary = "An image library for Torch",
+ detailed = [[
+This package provides routines to load/save and manipulate images
+using Torch's Tensor data structure.
+ ]],
+ homepage = "https://github.com/clementfarabet/lua---image",
+ license = "BSD"
+}
+
+dependencies = {
+ "torch >= 7.0",
+ "sys >= 1.0",
+ "xlua >= 1.0"
+}
+
+build = {
+ type = "cmake",
+ variables = {
+ LUAROCKS_PREFIX = "$(PREFIX)"
+ }
+}