Skip to content

Commit d68b377

Browse files
committed
Fix broken Markdown headings
1 parent 94cbe92 commit d68b377

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

Readme.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Light-weight (~10kB minified, ~5kB gzipped).
1919
[![Haar.js Mouth Detection](/examples/haar-mouth-detection.png)](http://foo123.github.com/examples/mouth-detection/)
2020
![Haar.js Eyes Detection](/examples/haar-eyes-detection.png)
2121

22-
###Contents
22+
### Contents
2323

2424
* [Live Playground Examples](#live-examples)
2525
* [How to Use](#how-to-use)
@@ -30,13 +30,13 @@ Light-weight (~10kB minified, ~5kB gzipped).
3030
* [Changelog](/changelog.md)
3131
* [Credits](/credits.md)
3232

33-
###Live Examples
33+
### Live Examples
3434
* [Interactive Face Detection](http://foo123.github.com/examples/face-detection/)
3535
* [Many Faces Detection](http://foo123.github.com/examples/faces-detection/)
3636
* [Interactive Mouth Detection](http://foo123.github.com/examples/mouth-detection/)
3737

3838

39-
###How To use
39+
### How To use
4040
You can use the __existing openCV cascades__ to build your detectors.
4141

4242
To do this just transform the __opencv xml file__ to *javascript* or *json* format
@@ -90,11 +90,11 @@ __HAAR.js works both in the browser and in Node.js (supporting parallel computat
9090
**NOTE** HAAR.js (0.4.4+) (and the generated cascades) support *umd-style* generic loading capability for: **commonjs / node** , **amd** , **browsers script tags**
9191

9292

93-
####Runing inside the browser
93+
#### Runing inside the browser
9494
Loading wth script tags
9595
You can run the example face.html or mouth.html inside your browser
9696

97-
####Running inside node
97+
#### Running inside node
9898
For running, the package have a dependency on canvas
9999
You can find an example inside examples/nodes.js
100100
Valid Output
@@ -111,18 +111,18 @@ For example for Ubuntu :
111111
sudo apt-get install libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev
112112
```
113113

114-
####Loading with requirejs
114+
#### Loading with requirejs
115115
As a third option, you can load the library with requireJS, both on the browser on with node.
116116
There is an example of loading with RequireJS inside node in examples/require.js.
117117
The configuration would be the same inside a browser
118118

119119

120-
####Supporting parallel computation
120+
#### Supporting parallel computation
121121
The [parallel.js](https://github.com/adambom/parallel.js) library is included in this repository, see the _face.html_ example for how to use.
122122
In most cases using parallel computation (if supported) can be much faster (eg _eye.html_ example)
123123

124124

125-
###Where to find Haar Cascades xml files to use for feature detection
125+
### Where to find Haar Cascades xml files to use for feature detection
126126
* [OpenCV](http://opencv.org/)
127127
* [This resource](http://alereimondo.no-ip.org/OpenCV/34)
128128
* search the web :)
@@ -131,13 +131,13 @@ The configuration would be the same inside a browser
131131

132132

133133

134-
###Usage Ideas
134+
### Usage Ideas
135135
* [SmileDetectJS](https://github.com/roironn/SmileDetectJS)
136136
* [ObjectDetect](https://github.com/mtschirs/js-objectdetect) (some common ideas with HAAR.js are used with extra functionality like object tracking)
137137

138138

139139

140-
###TODO
140+
### TODO
141141
- [x] optimize detector for real-time usage on browsers (eg. -> https://github.com/liuliu/ccv) [DONE use parallel.js]
142142
- [x] add selection option, detection is confined to that selection (eg detect nose while face already detected) [DONE]
143143
- [x] check if some operations can use fixed-point arithmetic, or other micro-optimizations [DONE where applicable]

api-reference.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
####Detector Methods
3+
#### Detector Methods
44

55

66

changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
###ChangeLog
1+
### ChangeLog
22

33
__0.4.8__
44
* fix undeclared variable issue in *detectSingleStep* method

credits.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__HAAR.js Credits__
22

3-
###People
3+
### People
44

55
_The following people have contributed more or less to this project_
66

@@ -10,7 +10,7 @@ _The following people have contributed more or less to this project_
1010
* [Mar Canet](https://github.com/mcanet)
1111

1212

13-
###Code
13+
### Code
1414

1515
_The following packages have been used by this project in one or another way_
1616

0 commit comments

Comments
 (0)