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-10-15fix corner-case issues when rescalingrescalingRonan Collobert
2015-09-16Merge pull request #106 from bshillingford/masterSoumith Chintala
Fix JPEG magic number to handle more JPEGs
2015-09-16Fix JPEG magic number to handle more JPEGsBrendan Shillingford
for example, these are all valid: FF D8 FF E0 FF D8 FF E1 FF D8 FF E3 FF D8 FF E8 FF D8 FF DB sources: https://en.wikipedia.org/wiki/List_of_file_signatures http://filesignatures.net/?page=all&order=SIGNATURE&alpha=J
2015-09-14Merge pull request #105 from Moodstocks/warp_boundsSoumith Chintala
warp: fix bounds checking for bicubic mode
2015-09-13warp: fix bounds checking for bicubic modeCédric Deltheil
This is related to commit b5fc8d0.
2015-09-12Merge pull request #104 from colesbury/warpSoumith Chintala
Fix bicubic interpolation in image.warp
2015-09-12Fix bicubic interpolation in image.warpSam Gross
The existing bicubic sampling produces artifacts. Fixes issue #103
2015-09-04Merge pull request #102 from etrulls/masterSoumith Chintala
Fix boundary/quantization artefacts on rotation.
2015-09-03Fix boundary/quantization artefacts on rotation.Eduard Trulls
2015-09-02Merge pull request #99 from nicholas-leonard/rtdSoumith Chintala
readthedocs
2015-08-30Merge pull request #101 from Moodstocks/png_genericSoumith Chintala
png.c: move apart non generic functions
2015-08-30png.c: move apart non generic functionsCédric Deltheil
2015-08-29Merge pull request #100 from Moodstocks/png_errorSoumith Chintala
png.c: bubble up error messages from libpng
2015-08-29png.c: bubble up error messages from libpngCédric Deltheil
2015-08-29Merge pull request #95 from edward-zhu/pngfixSoumith Chintala
fixed open 1-bit png on Mac
2015-08-27readthedocsnicholas-leonard
2015-08-25Merge pull request #98 from Aysegul/err_messagesSoumith Chintala
add in-place error message for rotate
2015-08-25add in-place error message for rotateAysegul
2015-08-24Merge pull request #96 from colesbury/saturateSoumith Chintala
Fix clampImage function call to saturate
2015-08-24Fix clampImage function call to saturateSam Gross
2015-08-21fixed open 1-bit png on MacEdward Zhu
2015-08-17Merge pull request #93 from colesbury/byteSoumith Chintala
Support saving torch.ByteTensor images
2015-08-17Support saving torch.ByteTensor imagesSam Gross
2015-08-14Merge pull request #92 from gheinrich/dev/issue_91Soumith Chintala
Fix call to processPNG from decompressPNG - closes #91
2015-08-14Fix call to processPNG from decompressPNG - closes #91Greg Heinrich
2015-08-14Merge pull request #90 from jonathantompson/warp_clamp_valSoumith Chintala
Added user specified pad value to warp function.
2015-08-14Added user specified pad value to warp function.Jonathan Tompson
2015-07-31Merge pull request #89 from torch/bilinearfixSoumith Chintala
fixing scale bugs in bilinear (src = 1) and bicubic (dest = 1)
2015-07-31fixing scale bugs in bilinear (src = 1) and bicubic (dest = 1)bilinearfixsoumith
2015-07-30Merge pull request #86 from jagapiou/bicubicSoumith Chintala
Add bicubic interpolation to image.scale.
2015-07-30Merge pull request #88 from samehkhamis/masterSoumith Chintala
Compiling with libpng and libjpeg under Windows
2015-07-30Compiling with libpng and libjpeg under Windowssamehkhamis
2015-07-24Merge pull request #87 from samehkhamis/masterSoumith Chintala
Making things work under windows
2015-07-24Work under windowssamehkhamis
2015-07-22Add bicubic interpolation to image.scale.John Agapiou
* Added 'bicubic' method to image.scale. * Added unit tests of scaling. Does interpolation for both upsizing and downsizing and does not preserve the average pixel intensity. Note this is different from 'bilinear' which preserves the average pixel intensity on downsizing but not on upsizing. At edges the missing data is added by extending the first/last line segment.
2015-07-13Merge pull request #83 from mtourne/fix_pgmaSoumith Chintala
Fixing broken PGMA loading - Adding test
2015-07-13Fixing broken PGMA loading - Adding testMatthieu Tourne
2015-07-09Merge pull request #70 from colesbury/lua52Soumith Chintala
Support Lua 5.2
2015-06-26Support Lua 5.2Sam Gross
2015-06-19Merge pull request #76 from krasin/two-args-png-loadSoumith Chintala
png: add support for 16-bit PNG files.
2015-06-18Merge pull request #78 from lukemarris/pyramidSoumith Chintala
image.gaussianpyramid non-default type input fix
2015-06-18Added a primitive test file for gaussianpyramidmarris
2015-06-18Fix for using non-torch.DoubleTensor inputs to image.gaussianpyramidmarris
2015-06-14Fix 16-bit color PNG; add tests for color PNG files; use inline tensor ↵Ivan Krasin
expectations.
2015-06-14Merge pull request #72 from Maratyszcza/patch-1Soumith Chintala
Avoid recomputing sin/cos in rotate main loop
2015-06-12Delete unused codeIvan Krasin
2015-06-12Add test_png.lua that checks gray images (8- and 16-bit)Ivan Krasin
2015-06-07png: add support for 16-bit PNG files.Ivan Krasin
Note: libpng.load now returns two arguments. The first argument is the result tensor, and the second argument is the color bitness. It will be either 8 or 16. For images with smaller color bit depth (for example, 4), the value is upgraded to 8 bits.
2015-06-02Use sinf and cosf instead of non-standard sincosfMarat Dukhan
2015-06-02Avoid recomputing sin/cos in rotate main loopMarat Dukhan