forked from autowarefoundation/autoware
-
Notifications
You must be signed in to change notification settings - Fork 0
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 autowarefoundation#762 from CPFL/release/1.4.0
Release/1.4.0 autowarefoundation#762
- Loading branch information
Showing
200 changed files
with
6,676 additions
and
492 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
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,23 @@ | ||
Fill-out only one section depending on whether you are reporting a bug or a new feature. | ||
|
||
# Bug | ||
## Expected Behavior | ||
|
||
|
||
## Actual Behavior | ||
|
||
|
||
## Steps to Reproduce the Problem | ||
|
||
1. | ||
1. | ||
1. | ||
|
||
## Specifications | ||
|
||
- Ubuntu version: | ||
- ROS Version: | ||
- Autoware branch: | ||
|
||
# New Feature | ||
Describe where does new feature request come from. Add high-level picture of how the new feature should work. |
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,27 @@ | ||
## Status | ||
**PRODUCTION / DEVELOPMENT** | ||
|
||
## Description | ||
A few sentences describing the overall goals of the pull request's commits. | ||
|
||
## Related PRs | ||
List related PRs against other branches: | ||
|
||
branch | PR | ||
------ | ------ | ||
other_pr_production | [link]() | ||
other_pr_master | [link]() | ||
|
||
|
||
## Todos | ||
- [ ] Tests | ||
- [ ] Documentation | ||
|
||
|
||
## Steps to Test or Reproduce | ||
Outline the steps to test or reproduce the PR here. | ||
|
||
``` | ||
roslaunch pkg_A executable_A | ||
``` | ||
The car should move. |
File renamed without changes.
83 changes: 83 additions & 0 deletions
83
ros/src/computing/perception/detection/lib/fusion/CHANGELOG.rst
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,83 @@ | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
Changelog for package fusion | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
1.4.0 (2017-08-04) | ||
------------------ | ||
|
||
1.3.1 (2017-07-16) | ||
------------------ | ||
|
||
1.3.0 (2017-07-14) | ||
------------------ | ||
* convert to autoware_msgs | ||
* Contributors: YamatoAndo | ||
|
||
1.2.0 (2017-06-07) | ||
------------------ | ||
* fix circular-dependency | ||
* Contributors: Shohei Fujii | ||
|
||
1.1.2 (2017-02-27 23:10) | ||
------------------------ | ||
|
||
1.1.1 (2017-02-27 22:25) | ||
------------------------ | ||
|
||
1.1.0 (2017-02-24) | ||
------------------ | ||
|
||
1.0.1 (2017-01-14) | ||
------------------ | ||
|
||
1.0.0 (2016-12-22) | ||
------------------ | ||
* Fixed a bud. It caused by reference to out of image size | ||
* Revert "Fixed a bud. It caused by reference to out of image size" | ||
This reverts commit 9d9568b650ab372883458bf42a93f13bab0be8e3. | ||
* Fixed a bud. It caused by reference to out of image size | ||
* Fix dependency | ||
* Hotfix segmentation fault in range_fusion | ||
* Add missing dependencies | ||
* Add ROS include path to 'include_directories' | ||
* Add new method for distance calculation of fusion | ||
Add new class to handle several distance calculation methods. | ||
We can now switch the calculation methos below by this class: | ||
* Shortest | ||
* Median | ||
* Mode (most common value) | ||
Confine scope of search_distance.h to lib/fusion | ||
Reconstruct search_distance.cpp | ||
* use function call instead of class method | ||
* fix typo | ||
* start function name with lower case | ||
* return 0 immediately if argument vector size is empty | ||
* use const reference as many as possible to avoid data copy | ||
Do not pass reference to std::sort | ||
* Correct dependency name | ||
* Delete warning cause | ||
* Use 'ranged-for' to reset std::vector | ||
* Set nested template parameter to C++11 style | ||
* Change calculation method of ranging | ||
[Before] minimun distance in a detection rectangle | ||
[After] median distance in a detection rectangle | ||
* Delete image size fixing | ||
* Use c++11 option instead of c++0x | ||
We can use newer compilers which support 'c++11' option | ||
* Integration of RCNN object detection on Autoware | ||
**Added a new library librcnn, which executes the object recognition using the Caffe framework, specifically the fast-rcnn branch. | ||
git clone --recursive https://github.com/rbgirshick/fast-rcnn.git | ||
-Requires CUDA for GPU support. | ||
To take advantage of cuDNN, at least CUDA 7.0 and a GPU with 3.5 compute capability is required. | ||
-Compile Caffe, located in caffe-fast-rcnn. | ||
Complete the requisites:http://caffe.berkeleyvision.org/install_apt.html | ||
-Download the pretrained models: | ||
http://www.cs.berkeley.edu/~rbg/fast-rcnn-data/voc12_submission.tgz | ||
-Modify the CMakeFiles and point them to your caffe and models directories. | ||
**Modified KF to use the new NMS algorithm | ||
**Modified Range fusion, it will not execute unnecesary fusions. | ||
**Added Configuration Messages to Runtime manager and RCNN node launch files | ||
* Updated point2image to set minh in the message | ||
* fix-dependency | ||
* Initial commit for public release | ||
* Contributors: AMC, Hiroki Ohta, Manato Hirabayashi, Shinpei Kato, Syohei YOSHIDA, Yukihiro Saito, h_ohta |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>fusion</name> | ||
<version>0.0.0</version> | ||
<version>1.4.0</version> | ||
<description>The fusion package</description> | ||
<maintainer email="[email protected]">Masao KONDOH</maintainer> | ||
<license>BSD</license> | ||
|
63 changes: 63 additions & 0 deletions
63
ros/src/computing/perception/detection/lib/image/dpm_ocv/CHANGELOG.rst
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,63 @@ | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
Changelog for package libdpm_ocv | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
1.4.0 (2017-08-04) | ||
------------------ | ||
|
||
1.3.1 (2017-07-16) | ||
------------------ | ||
|
||
1.3.0 (2017-07-14) | ||
------------------ | ||
* convert to autoware_msgs | ||
* Contributors: YamatoAndo | ||
|
||
1.2.0 (2017-06-07) | ||
------------------ | ||
* clean directories | ||
* ROS Kinectic Upgrade tested on Ubuntu 16.04 and OpenCV 3.2.0 | ||
Modules not included: | ||
-orb_localizer | ||
-dpm_ocv node and lib | ||
Everything else working | ||
Added some libraries for Gazebo on src/extras | ||
* Update for kinetic | ||
* Contributors: Yukihiro Saito, Yusuke FUJII, amc-nu | ||
|
||
1.1.2 (2017-02-27 23:10) | ||
------------------------ | ||
|
||
1.1.1 (2017-02-27 22:25) | ||
------------------------ | ||
|
||
1.1.0 (2017-02-24) | ||
------------------ | ||
|
||
1.0.1 (2017-01-14) | ||
------------------ | ||
|
||
1.0.0 (2016-12-22) | ||
------------------ | ||
* Fix for rosjava installed platform | ||
Some packages don't declare package dependencies correctly. | ||
This makes message jar files built failure. | ||
* Always check return value from CUDA API | ||
* Correct wrong type name | ||
* Add CUDA_CHECK after memory accesses | ||
* Remove extra level of indirection from cuMemFreeHost | ||
cuda-memcheck complained about a failure to free, and no doubt the memory leak would soon lead to more problems. | ||
* Need one more convStream element | ||
The loop starting at 493 is off-by-one without it, as are lines 568 and 569. | ||
Furthermore, if it so happens that the model has lots of parts but few levels (ie a small λ) such that parts ("n" here) is more than two greater than the HOG pyramid levels ("numLevels"), line 580 will overflow. This is TODO, but a higher priority IMO is to redesign the use of streams and texture memory, as texMap prevents parallelisation of part map processing. | ||
* Fix off-by-one error | ||
cuda-memcheck reported an out-of-bounds read here, which would be followed by an out-of-bounds write. I think changing from <= to < is sufficient. | ||
* Improve cmake CUDA configuration | ||
Use cmake CUDA feature as possible for removing absolute paths. | ||
* Use c++11 option instead of c++0x | ||
We can use newer compilers which support 'c++11' option | ||
* Use modified OpenCV function for adjusting parameter | ||
* Update dpm_ocv | ||
- support using both GPU and CPU | ||
- clean up code | ||
* Contributors: KenYN, Syohei YOSHIDA |
2 changes: 1 addition & 1 deletion
2
ros/src/computing/perception/detection/lib/image/dpm_ocv/package.xml
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>libdpm_ocv</name> | ||
<version>0.0.0</version> | ||
<version>1.4.0</version> | ||
<description>The opencv_dpm_gpu package</description> | ||
<maintainer email="[email protected]">Yusuke Fujii</maintainer> | ||
<author email="[email protected]">hoshika</author> | ||
|
44 changes: 44 additions & 0 deletions
44
ros/src/computing/perception/detection/lib/image/dpm_ttic/CHANGELOG.rst
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,44 @@ | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
Changelog for package libdpm_ttic | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
1.4.0 (2017-08-04) | ||
------------------ | ||
|
||
1.3.1 (2017-07-16) | ||
------------------ | ||
|
||
1.3.0 (2017-07-14) | ||
------------------ | ||
* convert to autoware_msgs | ||
* Contributors: YamatoAndo | ||
|
||
1.2.0 (2017-06-07) | ||
------------------ | ||
* fix circular-dependency | ||
* Contributors: Shohei Fujii | ||
|
||
1.1.2 (2017-02-27 23:10) | ||
------------------------ | ||
|
||
1.1.1 (2017-02-27 22:25) | ||
------------------------ | ||
|
||
1.1.0 (2017-02-24) | ||
------------------ | ||
|
||
1.0.1 (2017-01-14) | ||
------------------ | ||
|
||
1.0.0 (2016-12-22) | ||
------------------ | ||
* Remove needless compiling flags | ||
* Fix CUDA_ERROR_LAUNCH_FAILED error occurred in dpm_ttic | ||
* Correct memory allocate & copy size | ||
* Correct address calculation on device side | ||
* Improve cmake CUDA configuration | ||
Use cmake CUDA feature as possible for removing absolute paths. | ||
* Use c++11 option instead of c++0x | ||
We can use newer compilers which support 'c++11' option | ||
* Initial commit for public release | ||
* Contributors: Manato Hirabayashi, Shinpei Kato, Syohei YOSHIDA |
2 changes: 1 addition & 1 deletion
2
ros/src/computing/perception/detection/lib/image/dpm_ttic/package.xml
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<name>libdpm_ttic</name> | ||
<version>0.0.0</version> | ||
<version>1.4.0</version> | ||
<description>The dpm_ttic package</description> | ||
<maintainer email="[email protected]">Syohei YOSHIDA</maintainer> | ||
<license>BSD</license> | ||
|
Oops, something went wrong.