Skip to content
This repository has been archived by the owner on Nov 17, 2017. It is now read-only.

Commit

Permalink
Fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
oliveirarodolfo committed Nov 11, 2014
1 parent 19539f4 commit 1178530
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,20 @@ Usage
-----

A simple example can be generated by using an array with random values:

```
>>> import numpy
>>> from legofy import legofy
>>> from matplotlib import pyplot
>>>
>>> im = numpy.random.rand(10, 10)
>>> im_lego = legofy(im)
>>> _ = pyplot.imshow(im_lego, interpolation='none', origin='lower')
```
![Random Image](https://github.com/oliveirarodolfo/legofy/images/rand-lego.png)

But I want to do it with my profile picture, how can I do it?!

But I want to do it with my profile picture, how can I do it?!
```
>>> import scipy
>>> from legofy import legofy
>>> from matplotlib import pyplot
Expand All @@ -37,16 +40,16 @@ A simple example can be generated by using an array with random values:
>>> im = 1-(255-im)/(255)
>>> im_lego = legofy(im)
>>> _ = pyplot.imshow(im_lego, interpolation='none', origin='lower')
```
![Monalisa Image](https://github.com/oliveirarodolfo/legofy/images/mona-lego.png)


Developer information
---------------------

[Rodolfo Oliveira](mailto:hi@roliveira.com)

Send a hi!
----------
hi@roliveira.me

License information
-------------------

See the file ``LICENSE`` for information on this software, terms & conditions
for usage and a disclaimer of all warranties.

0 comments on commit 1178530

Please sign in to comment.