Skip to content

Commit 2ca503e

Browse files
committed
remove warning from readme
No critical bugs in almost 2 years, I guess the warning can go
1 parent 1be7ace commit 2ca503e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
# smartcrop.js
22

3-
**:warning: This is a work in progress. Neither the API nor the algorithm are finished or battle proofen.**
4-
53
Smartcrop.js implements an algorithm to find good crops for images.
64

75
![Example](http://29a.ch/sandbox/2014/smartcrop/example.jpg)
86
Image: [https://www.flickr.com/photos/endogamia/5682480447/](https://www.flickr.com/photos/endogamia/5682480447) by N. Feans
97

10-
It does this using fairly dumb image processing. In short:
8+
## Demos
9+
* [Test Suite](http://29a.ch/sandbox/2014/smartcrop/examples/testsuite.html), contains over 100 images, **heavy**
10+
* [Test Bed](http://29a.ch/sandbox/2014/smartcrop/examples/testbed.html), allows you to upload your own images
11+
* [Photo transitions](http://29a.ch/sandbox/2014/smartcrop/examples/slideshow.html), automatically creats ken burns transitions for a slide show.
12+
13+
## Algorithm Overview
14+
Smartcrop.js works using fairly dumb image processing. In short:
1115

1216
1. Find edges using laplace
1317
1. Find regions with a color like skin
1418
1. Find regions high in saturation
15-
1. Generate a set of candidate crops
19+
1. Generate a set of candidate crops using a sliding window
1620
1. Rank them using a importance function to focus the detail in the center
1721
and avoid it in the edges.
1822
1. Output the candidate crop with the highest rank
1923

20-
## Demos
21-
* [Test Suite](http://29a.ch/sandbox/2014/smartcrop/examples/testsuite.html), contains over 100 images, **heavy**
22-
* [Test Bed](http://29a.ch/sandbox/2014/smartcrop/examples/testbed.html), allows you to upload your own images
23-
* [Photo transitions](http://29a.ch/sandbox/2014/smartcrop/examples/slideshow.html), automatically creats ken burns transitions for a slide show.
2424

2525
## Simple Example
2626
```javascript

0 commit comments

Comments
 (0)