-
Notifications
You must be signed in to change notification settings - Fork 326
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from spencer-project/master
Latest updates from upstream
- Loading branch information
Showing
18 changed files
with
203 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
all: help | ||
|
||
help: | ||
@echo "" | ||
@echo "-- Help Menu" | ||
@echo "" | ||
@echo " 1. make build - build images" | ||
# @echo " 1. make build_gpu - build gpu image" | ||
# @echo " 1. make pull - pull all images" | ||
# @echo " 1. make clean - remove all images" | ||
@echo "" | ||
|
||
build: | ||
cd .. && \ | ||
docker build --tag=spencer/spencer_people_tracking:indigo --file=.docker/indigo/Dockerfile . && \ | ||
docker build --tag=spencer/spencer_people_tracking:kinetic --file=.docker/kinetic/Dockerfile . | ||
|
||
# build_gpu: | ||
# cd .. && \ | ||
# docker build --tag=spencer/spencer_people_tracking_gpu:indigo --file=.docker/indigo/Dockerfile_gpu . && \ | ||
# docker build --tag=spencer/spencer_people_tracking_gpu:kinetic --file=.docker/kinetic/Dockerfile_gpu . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
FROM ros:indigo-perception | ||
|
||
# Install build tools | ||
RUN apt-get update && apt-get install -y \ | ||
python-catkin-tools \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Setup workspace | ||
ENV CATKIN_WS=/root/catkin_ws | ||
RUN mkdir -p $CATKIN_WS/src | ||
WORKDIR $CATKIN_WS/src | ||
|
||
# Acquire source | ||
RUN git clone https://github.com/spencer-project/spencer_people_tracking.git | ||
# COPY . spencer_people_tracking/ | ||
|
||
# Install dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
wget && \ | ||
rosdep update && \ | ||
rosdep install -y -r --from-paths . --ignore-src --rosdistro ${ROS_DISTRO} --as-root=apt:false && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Build repo | ||
WORKDIR $CATKIN_WS | ||
ENV TERM xterm | ||
ENV PYTHONIOENCODING UTF-8 | ||
RUN catkin config --extend /opt/ros/$ROS_DISTRO && \ | ||
catkin build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
FROM ros:kinetic-perception | ||
|
||
# Install build tools | ||
RUN apt-get update && apt-get install -y \ | ||
python-catkin-tools \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Setup workspace | ||
ENV CATKIN_WS=/root/catkin_ws | ||
RUN mkdir -p $CATKIN_WS/src | ||
WORKDIR $CATKIN_WS/src | ||
|
||
# Acquire source | ||
RUN git clone https://github.com/spencer-project/spencer_people_tracking.git | ||
# COPY . spencer_people_tracking/ | ||
|
||
# Install dependencies | ||
RUN apt-get update && \ | ||
apt-get install -y \ | ||
wget && \ | ||
rosdep update && \ | ||
rosdep install -y -r --from-paths . --ignore-src --rosdistro ${ROS_DISTRO} --as-root=apt:false && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
# Build repo | ||
WORKDIR $CATKIN_WS | ||
ENV TERM xterm | ||
ENV PYTHONIOENCODING UTF-8 | ||
RUN catkin config --extend /opt/ros/$ROS_DISTRO && \ | ||
catkin build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Avoid chages in metafiles breaking build cache | ||
.docker | ||
.git | ||
.gitignore | ||
README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
launch/spencer_people_tracking_launch/data/rgbd_2dlaser_example/.gitignore
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 8 additions & 4 deletions
12
...aser_example/download_example_bagfiles.sh → ...unch/scripts/download_example_bagfiles.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
project(spencer_people_tracking_full) | ||
find_package(catkin REQUIRED) | ||
catkin_metapackage() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
This metapackage aggregates all subpackages of the SPENCER People Tracking Framework, and is mainly useful | ||
when installing the packaged version of the framework. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>spencer_people_tracking_full</name> | ||
<version>1.0.5</version> | ||
|
||
<description> | ||
A metapackage which depends on all subpackages of the SPENCER People Tracking Framework. | ||
</description> | ||
|
||
<maintainer email="linder@cs.uni-freiburg.de">Timm Linder</maintainer> | ||
<license>BSD</license> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
|
||
<run_depend>pcl_people_detector</run_depend> | ||
<run_depend>rwth_ground_hog</run_depend> | ||
<run_depend>rwth_ground_plane</run_depend> | ||
<run_depend>rwth_perception_people_msgs</run_depend> | ||
<run_depend>rwth_upper_body_detector</run_depend> | ||
<run_depend>spencer_bagfile_tools</run_depend> | ||
<run_depend>spencer_control_msgs</run_depend> | ||
<run_depend>spencer_detected_person_association</run_depend> | ||
<run_depend>spencer_detected_person_conversion</run_depend> | ||
<run_depend>spencer_diagnostics</run_depend> | ||
<run_depend>spencer_group_tracking</run_depend> | ||
<run_depend>spencer_human_attribute_msgs</run_depend> | ||
<run_depend>spencer_leg_detector_wrapper</run_depend> | ||
<run_depend>spencer_people_tracking_launch</run_depend> | ||
<run_depend>spencer_perception_mocks</run_depend> | ||
<run_depend>spencer_social_relation_msgs</run_depend> | ||
<run_depend>spencer_social_relations</run_depend> | ||
<run_depend>spencer_tracking_metrics</run_depend> | ||
<run_depend>spencer_tracking_msgs</run_depend> | ||
<run_depend>spencer_tracking_rviz_plugin</run_depend> | ||
<run_depend>spencer_tracking_utils</run_depend> | ||
<run_depend>spencer_vision_msgs</run_depend> | ||
<run_depend>srl_laser_detectors</run_depend> | ||
<run_depend>srl_laser_features</run_depend> | ||
<run_depend>srl_laser_segmentation</run_depend> | ||
<run_depend>srl_nearest_neighbor_tracker</run_depend> | ||
<run_depend>srl_tracking_exporter</run_depend> | ||
<run_depend>srl_tracking_logfile_import</run_depend> | ||
<run_depend>track_annotation_tool</run_depend> | ||
<run_depend>video_to_bagfile</run_depend> | ||
|
||
<export> | ||
<metapackage /> | ||
</export> | ||
|
||
</package> |