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
AgeCommit message (Collapse)Author
2017-04-20fix narrow with math.floor (#220)HEADmasterNicholas Léonard
2017-04-20compressPNG should require 'liblua_png' rather than 'libpng'. (#219)gchanan
All other PNG calls require 'liblua_png' and the test currently fails on compression.
2017-03-23Added code to compress tensor into PNG in-memory similar to compressJPG, ↵Vladimir S. FONOV
also added a test (#211)
2017-02-28Fix "undefined symbol: luaopen_libpng" when running torch-android (#215)zheng03
2017-01-19Merge pull request #210 from asrata/masterSoumith Chintala
Fix out-of-boundary bug when lineWidth is big
2017-01-19fix out-of-boundary bug when lineWidth is bigasrata
2016-10-11Merge pull request #198 from karandwivedi42/masterSoumith Chintala
Add image.getSize(filename) function
2016-10-11Add image.getSize(filename) functionKaran Dwivedi
Add getPPMsize and getPGMsize functions Combine them with getPNGsize and getJPGsize for getSize function
2016-10-04Merge pull request #196 from TimZaman/fix/warp-type-issueSoumith Chintala
Fixes warp type-cast issue in #189
2016-10-04Update .travis.ymlSoumith Chintala
2016-10-04Fixes warp type-fixing issue in #189Tim Zaman
2016-09-15Merge pull request #191 from karandwivedi42/masterSoumith Chintala
Fix Problem drawing colors in drawText
2016-09-15Merge pull request #192 from chunyang/masterSoumith Chintala
Return a sensible error on unknown file type
2016-09-15Update .travis.ymlSoumith Chintala
2016-09-15Return a sensible error on unknown file typeCharlie Yang
Provide a more detailed error message when the image file type cannot be determined via magic or extension. Previously the error message said attempt to concatenate local 'ext' (a nil value)
2016-09-14Cast int to floatKaran Dwivedi
2016-09-13Merge pull request #189 from qureai/masterSoumith Chintala
Fixed tensor type issue in affinetransform and warp
2016-09-13Fixed type issue in affinetransform and warp. See ↵Sasank Chilamkurthy
https://github.com/torch/image/issues/187
2016-08-25Merge pull request #185 from qureai/masterSoumith Chintala
Added affinetransform
2016-08-23Added documentation for affinetransformSasank Chilamkurthy
2016-08-23Add affine transform functionSasank Chilamkurthy
2016-07-31removing lena, adding grace hopperSoumith Chintala
2016-07-17Merge pull request #178 from bnsh/patch-1Soumith Chintala
Global y1
2016-07-14Global y1Binesh Bannerjee
I BELIEVE y1 is being created globally in the crop function, and that x2 is not actually being used. So, I've changed local x1, x2 to local x1, y1. https://github.com/torch/image/issues/177
2016-07-04Merge pull request #174 from clement-masson/patch-1Soumith Chintala
Add details about image saving in the doc
2016-07-04Add details about image saving in the docClément Masson
2016-06-27Merge pull request #173 from gpleiss/drawrectSoumith Chintala
Implement drawRect function
2016-06-27Implement drawRect functionGeoff Pleiss
2016-05-26Merge pull request #169 from TimZaman/test_warp_fixSoumith Chintala
Fixes for test_warp.lua
2016-05-26Indentation fixesbrainstorm
2016-05-26Fixes warping scalebrainstorm
2016-05-06Merge pull request #167 from tkoeppe/pngSoumith Chintala
[generic/png.c] Add missing error handling
2016-05-04[generic/png.c] Add missing error handlingThomas Köppe
2016-05-04Merge pull request #166 from tkoeppe/gaussSoumith Chintala
Fix double-to-byte conversion order
2016-05-04Fix double-to-byte conversion orderThomas Köppe
2016-05-03Merge pull request #165 from DmitryUlyanov/patch-1Soumith Chintala
Add missing lab2rgb doc
2016-05-03Add missing lab2rgb docDmitry Ulyanov
2016-05-01Merge pull request #163 from fmassa/scale_boundarySoumith Chintala
Fix in image.scale when one of the dimensions is too small
2016-05-01Fix in image.scale when one of the dimensions is too smallFrancisco Massa
If height or width is less than one after the resize, the tensor would have wrong dimensions (2 or 1 instead of 3)
2016-04-20Merge pull request #161 from lvdmaaten/patch-2Soumith Chintala
Fix bicubic interpolation when source has size 1
2016-04-20Fix bicubic interpolation when source has size 1Laurens van der Maaten
The bicubic interpolation code accesses non-allocated memory when `src_len` is 1 because it doesn't have a special case like bilinear interpolation does. This PR addresses that bug. I ran the following test to confirm it works: ``` require 'image' im = torch.randn(3, 2, 3):float() for n = 1,1000 do resim = image.scale(im, 256, 768, 'bicubic') end ```
2016-04-19Update drawing.mdSoumith Chintala
2016-03-31Merge pull request #157 from colesbury/sysSoumith Chintala
Only require sys.fpath from sys
2016-03-31Only require sys.fpath from sysSam Gross
Loading the sys package can cause a deadlock in some OpenBLAS configurations when multiple Torch threads require sys (such as via the image package) at the same time. Depends on torch/sys#8
2016-03-27Merge pull request #155 from Moodstocks/jpeg-inmemSoumith Chintala
jpeg: auto-detect jpeg_mem_src and jpeg_mem_dest
2016-03-19jpeg: auto-detect jpeg_mem_src and jpeg_mem_destCédric Deltheil
If not defined (e.g. libjpeg < v8) then return a meaningful error at runtime.
2016-03-18Merge pull request #154 from Moodstocks/assert-errSoumith Chintala
test: switch to assertError
2016-03-18test: switch to assertErrorCédric Deltheil
2016-03-10Merge pull request #151 from Moodstocks/testerSoumith Chintala
test: fix torch.Tester warnings
2016-03-10test: fix torch.Tester warningsCédric Deltheil
- tensors with same content but different dimensions - assert should only be used for boolean conditions See torch/torch7#562