Skip to content

Commit

Permalink
Updated readme with more example images and details
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS94 committed Oct 27, 2018
1 parent 8754448 commit f5bb4a0
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
19 changes: 19 additions & 0 deletions Readme.md → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,26 @@ point mapping configuration. You can configure the mapping as shown below.
![Point Mapping Configuration](point_mapping.png)
### Examples
#### Real-time Processing
Python client processing two CCTV videos (of Bandaranayake International Airport, Sri Lanka)
in parallel. All the detected people are mapped to the ground map and tracked. We
are capable of tracing across cameras as well.
![Real-time Processing](real-time_processing.png)
### Viewing Tracked Person Timelines
Under *Time Line* tab, the paths followed by each individual is shown. You
can click on each path to see pictures of the person corresponding to the
selected path.
(Note: this example timeline looks confusing because of the crowded test videos used)
![Time Line](timeline.png)
## Contributors
* Madhawa Vidanapathirana - [email protected]
* Imesha Sudasingha - [email protected]
* Pasindu Kanchana - [email protected]
Expand Down
5 changes: 3 additions & 2 deletions core/src/main/java/org/augur/sense/core/CameraNotifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,14 @@ public void notifyCamera(long timestamp) {

@Override
public void completed(HttpResponse httpResponse) {
String entity = null;
try {
String entity = HttpUtils.readEntity(httpResponse.getEntity());
entity = HttpUtils.readEntity(httpResponse.getEntity());
LocalMap receivedMap = HttpUtils.mapEntity(entity, LocalMap.class);
cameraCoordinator.addLocalMap(receivedMap);
setState(State.IDLE);
} catch (IOException e) {
logger.error("Error occurred when reading entity", e);
logger.error("Error occurred when reading entity: {}", entity, e);
setState(State.IDLE);
}
}
Expand Down
Binary file added real-time_processing.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added timeline.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f5bb4a0

Please sign in to comment.