Improve wording for readability (#15461)

Improve use of English language to enhance readability
This commit is contained in:
Lindsay Ward 2020-10-30 00:55:37 +10:00 committed by GitHub
parent 2becc3509c
commit 3e4ef10f33
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,23 +8,23 @@ ha_release: 0.36
ha_domain: openalpr_local ha_domain: openalpr_local
--- ---
[OpenALPR](https://www.openalpr.com/) integration for Home Assistant allows you The [OpenALPR](https://www.openalpr.com/) integration for Home Assistant allows you
to process license plates from a camera. You can use them to open a garage door to process vehicle license plates from a camera. You can use this information to
or trigger any other [automation](/integrations/automation/). trigger [automations](/integrations/automation/) like opening a garage door.
For using the result inside an automation rule, take a look at the For using the result inside an automation rule, take a look at the
[component](/integrations/image_processing) page. [image processing integration](/integrations/image_processing) page.
## Local installation ## Local installation
If you want process all data locally, you need version 2.3.1 or higher of the If you want process all data locally, you will need version 2.3.1 or higher of the
`alpr` command line tool. `alpr` command line tool.
If you don't find binaries for your distribution you can compile from source. If you don't find binaries for your distribution, you can compile the tool from source.
Documentation of how to build OpenALPR is found Documentation of how to build OpenALPR is found
[here](https://github.com/openalpr/openalpr/wiki). [here](https://github.com/openalpr/openalpr/wiki).
On a Debian system you can use this `cmake` command to build only the command On a Debian system you can use the following `cmake` command to build only the command
line tool: line tool:
```bash ```bash
@ -32,10 +32,10 @@ cmake -DWITH_TEST=FALSE -DWITH_BINDING_JAVA=FALSE --DWITH_BINDING_PYTHON=FALSE \
--DWITH_BINDING_GO=FALSE -DWITH_DAEMON=FALSE -DCMAKE_INSTALL_PREFIX:PATH=/usr .. --DWITH_BINDING_GO=FALSE -DWITH_DAEMON=FALSE -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
``` ```
For other operating system please refer to the For other operating systems, please refer to the
[OpenALPR wiki](https://github.com/openalpr/openalpr/wiki). [OpenALPR wiki](https://github.com/openalpr/openalpr/wiki).
Verify your `alpr` installation with: Verify your `alpr` installation with a command like the following:
```bash ```bash
wget -O- -q http://plates.openalpr.com/h786poj.jpg | alpr - wget -O- -q http://plates.openalpr.com/h786poj.jpg | alpr -
@ -54,7 +54,7 @@ image_processing:
{% configuration %} {% configuration %}
region: region:
description: Country or region. List of supported [values](https://github.com/openalpr/openalpr/tree/master/runtime_data/config). description: Country or region. List of [supported values](https://github.com/openalpr/openalpr/tree/master/runtime_data/config).
required: true required: true
type: string type: string
alpr_bin: alpr_bin:
@ -63,7 +63,7 @@ alpr_bin:
type: string type: string
default: alpr default: alpr
confidence: confidence:
description: The minimum of confidence in percent to process with Home Assistant. description: The minimum confidence in percent to process with Home Assistant.
required: false required: false
type: integer type: integer
default: 80 default: 80
@ -73,7 +73,7 @@ source:
type: list type: list
keys: keys:
entity_id: entity_id:
description: A camera entity id to get picture from. description: A camera entity id to get the picture from.
required: true required: true
type: string type: string
name: name: