Skip to content

Commit

Permalink
license
Browse files Browse the repository at this point in the history
  • Loading branch information
tano297 committed May 9, 2019
1 parent a89e736 commit 4484cdc
Show file tree
Hide file tree
Showing 40 changed files with 95 additions and 43 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Expand Up @@ -6,7 +6,7 @@ stages:
build:
stage: build
script:
- cp -r /builds/ipb-tools/bonnet /bonnet && ./test.sh
- cp -r /builds/ipb-team/ipb-tools/bonnet /bonnet && ./test.sh

tags:
- docker
2 changes: 1 addition & 1 deletion deploy_cpp/src/lib/include/bonnet.hpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
2 changes: 1 addition & 1 deletion deploy_cpp/src/lib/include/net.hpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
2 changes: 1 addition & 1 deletion deploy_cpp/src/lib/include/netTF.hpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
2 changes: 1 addition & 1 deletion deploy_cpp/src/lib/include/netTRT.hpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
2 changes: 1 addition & 1 deletion deploy_cpp/src/lib/src/bonnet.cpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
2 changes: 1 addition & 1 deletion deploy_cpp/src/lib/src/net.cpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
2 changes: 1 addition & 1 deletion deploy_cpp/src/lib/src/netTF.cpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
2 changes: 1 addition & 1 deletion deploy_cpp/src/lib/src/netTRT.cpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
17 changes: 17 additions & 0 deletions deploy_cpp/src/ros/include/bonnet_handler.hpp
@@ -1,3 +1,20 @@
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
* Bonnet is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Bonnet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Bonnet. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once

// ROS
Expand Down
29 changes: 23 additions & 6 deletions deploy_cpp/src/ros/src/bonnet_handler.cpp
@@ -1,3 +1,20 @@
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
* Bonnet is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Bonnet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Bonnet. If not, see <http://www.gnu.org/licenses/>.
*/
// STD
#include <unistd.h>
#include <string>
Expand Down Expand Up @@ -33,11 +50,11 @@ netHandler::netHandler(ros::NodeHandle& nodeHandle)
ROS_INFO("Successfully launched node.");
}

/**
* @brief Initialize the Handler
*
* @return Error code
*/
/*!
* @brief Initialize the Handler
*
* @return Error code
*/
retCode netHandler::init() {
// before doing anything, make sure we have a slash at the end of path
path_ += "/";
Expand Down Expand Up @@ -140,4 +157,4 @@ void netHandler::imageCallback(const sensor_msgs::ImageConstPtr& img_msg) {
bgr_publisher_.publish(bgr_msg);
}

} // namespace chatter
} // namespace bonnet
18 changes: 18 additions & 0 deletions deploy_cpp/src/ros/src/bonnet_node.cpp
@@ -1,3 +1,21 @@
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
* Bonnet is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Bonnet is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Bonnet. If not, see <http://www.gnu.org/licenses/>.
*/

#include <ros/ros.h>
#include "bonnet_handler.hpp"

Expand Down
2 changes: 1 addition & 1 deletion deploy_cpp/src/standalone/src/cnn_use_pb.cpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
2 changes: 1 addition & 1 deletion deploy_cpp/src/standalone/src/cnn_video_pb.cpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
2 changes: 1 addition & 1 deletion deploy_cpp/src/standalone/src/session.cpp
@@ -1,4 +1,4 @@
/* Copyright 2017 Andres Milioto. All Rights Reserved.
/* Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
*
* This file is part of Bonnet.
*
Expand Down
2 changes: 1 addition & 1 deletion train_py/arch/abstract_net.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/arch/bonnet.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/arch/bonnet_inception.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/arch/bonnet_mobilenets.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/arch/layer.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_dataset_performance.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_freeze.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_graph_log.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_plant_features.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_train.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_use.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_use_pb.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_use_pb_tensorRT.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_video.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_video_pb.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/cnn_video_pb_tensorRT.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/dataset/abstract_dataset.py
@@ -1,4 +1,4 @@
# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/dataset/augment_data.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/dataset/aux_scripts/cityscapes_preprocess.py
@@ -1,7 +1,7 @@
#!/usr/bin/python3
# coding: utf-8

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/dataset/aux_scripts/cwc_preprocess.py
@@ -1,7 +1,7 @@
#!/usr/bin/python3
# coding: utf-8

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/dataset/aux_scripts/cwc_preprocess_newstruct.py
@@ -1,7 +1,7 @@
#!/usr/bin/python3
# coding: utf-8

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
@@ -1,7 +1,7 @@
#!/usr/bin/python3
# coding: utf-8

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/dataset/cityscapes.py
@@ -1,6 +1,6 @@
# coding: utf-8

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/dataset/general.py
@@ -1,6 +1,6 @@
# coding: utf-8

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down
2 changes: 1 addition & 1 deletion train_py/dataset/plant_features.py
@@ -1,6 +1,6 @@
#!/usr/bin/python3

# Copyright 2017 Andres Milioto. All Rights Reserved.
# Copyright 2017 Andres Milioto, Cyrill Stachniss. All Rights Reserved.
#
# This file is part of Bonnet.
#
Expand Down

0 comments on commit 4484cdc

Please sign in to comment.