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
2015-05-01rgb2y for byte tensors (needed to go into C for efficiency)bytechan1Soumith Chintala
2015-05-01adding better error messagingSoumith Chintala
2015-04-26Merge pull request #65 from torch/jpegperfSoumith Chintala
fixing y2jet for other default tensor types
2015-04-26fixing y2jet for other default tensor typesjpegperfsoumith
2015-04-25Merge pull request #63 from jonathantompson/hflip_vflip_assert_fixSoumith Chintala
modifed h/vflip assert to only check if 2D tensors are contiguous (maintaining backward compat.)
2015-04-25Merge pull request #64 from torch/jpegperfSoumith Chintala
more perf for jpeg decoder, made static loops for 1,3 channel cases
2015-04-25more perf for jpeg decoder, made static loops for 1,3 channel casessoumith
2015-04-24modifed h/vflip assert to only check if 2D tensors are contiguous ↵Jonathan Tompson
(maintaining backward compat.)
2015-04-24Merge pull request #62 from torch/jpegoptimSoumith Chintala
jpeg decoding optimizations. removing bound checks
2015-04-24jpeg decoding optimizations. removing bound checksjpegoptimSoumith Chintala
2015-04-15Merge pull request #60 from jonathantompson/flipSoumith Chintala
Added flip function (to a tensor up to 5D along an arbitrary dimension).
2015-04-15Added flip function (to flip an arbitrary dimension up to 5D).Jonathan Tompson
Added back rawset for vflip Added test for non-contiguous tensors. Removed non-contiguous test. Added checks for the source and desination tensor in vflip, hflip and flip. flixed leaked global.
2015-04-02Merge pull request #58 from mys007/errorsRecoverableSoumith Chintala
JPG and PNG: Aborts replaced with lua errors
2015-03-27Replaced hard aborts with soft lua errors (possible to catch them by pcall())Martin Simonovsky
2015-03-27Merge pull request #57 from nicholas-leonard/gaussianSoumith Chintala
image.gaussian result tensor
2015-03-26image.gaussian result tensorNicholas Leonard
2015-03-25Merge pull request #54 from nicholas-leonard/typoSoumith Chintala
fix typo
2015-03-25fix typoNicholas Leonard
2015-03-11Merge pull request #52 from jonathantompson/compressJPGSoumith Chintala
Added docs for decompressJPG. Added compressJPG function.
2015-03-11Added documentation for decompressJPG. Added function to do JPG compression ↵Jonathan Tompson
in memory, added documentation for it and a unit test. readme fix. fixed image.save fixed compiler warning (thanks @deltheil).
2015-03-11Merge pull request #53 from torch/depthSoumith Chintala
handle more cases (1 plane -> 3 planes) when converting image depth
2015-03-10handle more cases (1 plane -> 3 planes) when converting image depthRonan Collobert
2015-02-21Merge pull request #50 from jucor/fixInPlaceSoumith Chintala
Revert "toDisplayTensor : input is only copied when necessary"
2015-02-20Revert "toDisplayTensor : input is only copied when necessary"Julien Cornebise
This reverts commit 3bc649ac0258936dfc67e5de8320faed649b6bf8. Conflicts: init.lua
2015-02-17Merge pull request #48 from Moodstocks/labSoumith Chintala
added sRGB <-> Lab conversion
2015-02-17added sRGB <-> Lab conversionMikael Rousson
includes test for back and forth conversion stability removed old rgb2lab function
2015-02-17Merge pull request #47 from lvdmaaten/masterSoumith Chintala
Add documentation for log-polar transform (+ small speed-up)
2015-02-17add documentation for log-polar transformlvdmaaten
2015-02-17Merge pull request #46 from lvdmaaten/masterSoumith Chintala
Add polar transform
2015-02-17speed up log-polar transformlvdmaaten
2015-02-17add log-polar transformlvdmaaten
2015-02-16add log-polar transformlvdmaaten
2015-02-14add option for polar transform of full or valid partlvdmaaten
2015-02-10add polar transformlvdmaaten
2015-02-09new module style returning image tableSoumith Chintala
2015-02-03Merge pull request #45 from nagadomi/fix_missing_private_variableSoumith Chintala
fix missing private variable in image.scale
2015-02-03fix missing private variable in image.scalenagadomi
2015-01-31Added y2jet() for converting L-levels greys into jet heeat-mapAlfredo Canziani
2015-01-29Merge pull request #43 from ajtulloch/fix-ppmSoumith Chintala
[bugfix] Fix loading of PGM files images
2015-01-29UpdatedAndrew Tulloch
2015-01-22Merge pull request #42 from Aysegul/fix_displaySoumith Chintala
copy input before display to preserve the values
2015-01-22copy input before display to preserve the valuesAysegul Dundar
2015-01-20math.mod -> math.fmod (compatibility fixes)Soumith Chintala
2015-01-14Merge pull request #40 from Aysegul/flip-fixSoumith Chintala
flip functions use dst stride for dst
2015-01-14flip functions use dst stride for dstAysegul Dundar
2015-01-14Merge pull request #39 from nagadomi/rotate_bilinearSoumith Chintala
Add bilinear mode for rotate()
2014-12-25Add bilinear mode for rotate()nagadomi
2014-11-05adding README.md to install folder for inline helpSoumith Chintala
2014-10-26Merge pull request #36 from nicholas-leonard/scaleeachSoumith Chintala
scaleeach for toDisplayTensor (even when input is Tensor)
2014-10-17toDisplayTensor : input is only copied when necessaryNicholas Leonard