Commit Graph

5236 Commits

Author SHA1 Message Date
Rishabh Raj 9cbea5fcba Fix to incorporate a more generalised duplicate removal and JSON dump to string 2014-04-14 02:59:00 +05:30
Rishabh Raj a57cf0db4b Improve docstring for add_cell 2014-04-14 02:37:29 +05:30
Rishabh Raj c9a981445d Add and improve docstrings, JSON dumping and duplicate removal generalised 2014-04-14 02:25:18 +05:30
Rishabh Raj 6c0a5706c3 Remove sample.ipynb, template now inline 2014-04-13 20:49:46 +05:30
Rishabh Raj fcc607f4d1 Add default value for adding cell, better naming for type of value 2014-04-13 16:02:13 +05:30
Rishabh Raj 62a91370f8 Add __all__ to specify modules which should be imported 2014-04-13 15:08:28 +05:30
Rishabh Raj 07970bd0b0 Fix PEP8, line lengths for comments 2014-04-13 13:11:45 +05:30
Rishabh Raj a53f880256 Fix typo, better function name and docstring summary 2014-04-13 12:51:45 +05:30
Rishabh Raj 0c9ee09f04 Fix camel case, more descriptive function name 2014-04-13 12:42:30 +05:30
Rishabh Raj 1e34359f04 Fix PEP8 2014-04-13 12:19:36 +05:30
Rishabh Raj 5180da54ad removes redundant passing of an extra parameter 2014-04-11 00:45:22 +05:30
Rishabh Raj 65adb7935b adds documentation 2014-04-11 00:30:21 +05:30
Rishabh Raj 694739ee02 updated import statement for creating ipython notebooks, better name in place for jsonify 2014-04-10 18:40:59 +05:30
Rishabh Raj 235a9b3ec1 moves everything related to generating the IPython notebook, to a different file 2014-04-10 18:04:31 +05:30
Rishabh Raj a6f396b059 added newline at end of file 2014-04-10 16:47:40 +05:30
Rishabh Raj db795bc796 fixes use of camel case 2014-04-10 16:46:14 +05:30
Rishabh Raj da36df0bc9 added Notebook class for creating IPython notebooks, better name for main object variable 2014-04-09 23:41:28 +05:30
Rishabh Raj a047fdcb74 Fixes for making code more pythonic, follow conventions 2014-03-19 11:45:56 +05:30
Rishabh Raj 5b3aa56c0f Adds functionality to generate ipython notebooks for the gallery examples 2014-03-16 22:48:01 +05:30
Stefan van der Walt 9501c2dc25 Merge pull request #924 from ahojnnes/restoration
Move functions to restoration submodule
2014-03-14 23:03:01 +02:00
Johannes Schönberger 697910c010 Add denoise deprecation removal to TODO.txt 2014-03-14 16:27:43 -04:00
Stefan van der Walt 2df1af87ef Merge pull request #916 from neerajgangwar/master
Add loading from URL in novice module
2014-03-14 16:15:19 +02:00
Stefan van der Walt 8aea87acfd Merge pull request #923 from ahojnnes/doctests
Fix doctests
2014-03-14 15:45:53 +02:00
Johannes Schönberger 13b48ff7ed Update bento 2014-03-14 08:20:18 -04:00
Stefan van der Walt 6b8a198f8d Merge pull request #915 from vighneshbirodkar/blob_det
Blob dection (LoG)
2014-03-14 12:21:39 +02:00
Johannes Schönberger eedc72def6 Fix restoration example imports 2014-03-13 20:00:45 -04:00
Johannes Schönberger ef63523ab0 Move denoise functions to restoration submodule 2014-03-13 19:39:54 -04:00
Johannes Schönberger 107f1d607c Move phase unwrapping algorithms to restoration submodule 2014-03-13 18:50:39 -04:00
Johannes Schönberger 1f5ec3e8ed Improve function name in warp example 2014-03-13 18:40:08 -04:00
Johannes Schönberger ece0f30af3 Always Skip doctests which depend on Qt and are in the class doc string
The doc test skip directive modifies the __doc__ attribute, which is not
possible for new-stlye classes.
2014-03-13 18:29:54 -04:00
Johannes Schönberger f280e0b13e Fix regular grid doctest 2014-03-13 18:24:59 -04:00
Johannes Schönberger b6e7fc8624 Fix warp doctest and example 2014-03-13 18:24:34 -04:00
Stefan van der Walt c60d15f2f4 Merge pull request #922 from juliantaylor/doc-improve
Improve performance of equalize example
2014-03-13 23:52:06 +02:00
Julian Taylor d4cb154d17 improve performance of equalize example
percentile can compute multiple ranks in one go which in the case of the
example halves the required time.
2014-03-13 22:34:55 +01:00
Neeraj Gangwar 1d133e5c17 made minor changes in syntax
1. merged is_url and file_or_url_context in one import statement
2. changed syntax to check if path is a URL. now more compact
2014-03-13 18:42:12 +05:30
Stefan van der Walt 4992f8bc9b Make doc/gh-pages executable 2014-03-13 00:47:12 +02:00
Vighnesh Birodkar c92358706b typo 2014-03-13 03:22:30 +05:30
Neeraj Gangwar 0bfdda58e5 removed unnecessary imports from _novice.py 2014-03-12 17:55:54 +05:30
Neeraj Gangwar 7880453d42 changed the method of fetching images in Picture class
using file_or_url_context to get context and calling imread
and imghdr on returned context
2014-03-12 15:57:32 +05:30
Neeraj Gangwar dc85186e19 corrected syntax for error handling while fetching image from
a URL in class Picture
2014-03-12 13:05:53 +05:30
Neeraj Gangwar 70ca1495cb changed urlparse library from six.moves.urllib_parse
to six.moves.urllib.parse
2014-03-12 08:48:23 +05:30
Neeraj Gangwar 2f3bd464b8 added a dummy useragent in Picture class while fetching image
using URL.
2014-03-12 08:00:53 +05:30
Neeraj Gangwar 15893a3ed0 changed the method of checking if a string is URL
1. removed regex code which was used earlier to check if a string is
url. (regex code taken from django)
2. Now checking if a string starts with http(s) or ftp(s).
2014-03-12 00:29:19 +05:30
Neeraj Gangwar 654642c986 changed test url in example for the Picture(object) 2014-03-11 22:35:07 +05:30
Vighnesh Birodkar 5255b29f6e doc rectify 2014-03-11 22:29:03 +05:30
Vighnesh Birodkar 6e6b27bc86 doc changes 2014-03-11 22:24:08 +05:30
Vighnesh Birodkar 815b0226d4 removed print 2014-03-11 21:59:51 +05:30
Vighnesh Birodkar 806a52edd5 migrated from area to sigma 2014-03-11 21:55:09 +05:30
Neeraj Gangwar 1fd34b4751 added description and exmaple for new functionality
of fetching images of url
2014-03-11 21:53:47 +05:30
Neeraj Gangwar 9557c8dde1 added a functionality to fetch images from URL in _novice.py 2014-03-11 21:49:21 +05:30