How to build OpenCV from deb files? - opencv

I have the following deb files after following the answers from this and this.
OpenCV-4.0.1-x86_64-dev.deb
OpenCV-4.0.1-x86_64-libs.deb
OpenCV-4.0.1-x86_64-scripts.deb
OpenCV-4.0.1-x86_64.tar.gz
OpenCV-4.0.1-x86_64.tar.Z
I have generated them after turning on CPACK_BINARY=ONhowever I do not know the build order in order to successfully build OpenCV. How do I properly install them?

You should also get a shell script, mine is called OpenCV-unknown-aarch64.sh, yours will probably be called OpenCV-4.0.1-x86_64.sh
Then to install I just go to the folder with the deb files and run ./OpenCV-unknown-aarch64.sh

Related

How to use Conan in Bazel

I am new in bazel and conan.
I try run conan in bazel use it https://docs.conan.io/en/1.44/integrations/build_system/bazel.html
In WORSPACE file:
load("//third-party/grpc:direct.bzl", "load_conan_dependencies")
In direct.bzl
load("#//conandeps:dependencies.bzl", "load_conan_dependencies")
conanfile.txt
[requires]
grpc/1.45.2
[generators]
cmake
When i try bazel sync
then has message:
ERROR: error loading package '': at /Users/a19583433/_WORK/videomix/third-party/grpc/direct.bzl:5:6: Label '//conandeps:dependencies.bzl' is invalid because 'conandeps' is not a package; perhaps you meant to put the colon here: '//:conandeps/dependencies.bzl'?
What am I doing wrong?
The doc is a little bit misleading - In short, conandeps is not a keyword, and you should replace conandeps to the subfolder that holds your conanfile.txt
e.g.,
you should have your load function like
load("#//subfolder1:dependencies.bzl", "load_conan_dependencies")
when you have the following folder structure
project
│ WORKSPACE
│ somefile.txt
│
└───subfolder1
│ conanfile.txt
│ somefile.txt
It took me quite a bit of time to figure out how to get Bazel and Conan to work together even with the accepted answer here, so I want to provide some additional information that is missing from here and from the documentation that would have helped me.
First off (because it's easy to confuse) what's being discussed here is consuming Conan packages with Bazel, not producing Conan packages.
dependencies.bzl is a generated file. This file gets generated when you run conan install and BazelDeps is listed as a generator in your conanfile (.txt or .py). You must run conan install to trigger BazelDeps to create this file.
After running conan install the dependencies.bzl will be generated in the current working directory along with directories for each of the dependencies listed in your conan file. Each of these will have a generated BUILD file. You should not directly reference these BUILD files. As it is shown in the documentation you simply add load("#//[your-path]:dependencies.bzl", "load_conan_dependencies") to your WORKSPACE and now you can use the libraries from your conan file.
Example of my generated dependencies.bzl:
def load_conan_dependencies():
native.new_local_repository(
name="gtest",
path="/conan-cache/.conan/data/gtest/1.12.1/_/_/package/5ab84d6acfe1f23c4fae0ab88f26e3a396351ac9",
build_file="/workspaces/test-project/generated/third-party/gtest/BUILD",
)
Example of my WORKSPACE:
load("//generated/third-party:dependencies.bzl", "load_conan_dependencies")
load_conan_dependencies()
Footnote:
Because we have multiple developers and we want to streamline this process, what we settled on is running conan install as part of a build script that then executes our regular build process. When you first run conan install it will pull the libraries and install them into the conan cache. After that, running the install is effectively a no-op. BazelDeps will overwrite all the generated files with the same contents, but because Bazel uses file content hashes to determine if inputs have changed, this does not result in having to rebuild anything. It just slows down the build slightly by re-running the generator.

How do I pass a ROS package to another person?

I have made a ROS workspace and inside a package.
I did catkin_make and everything is working well.
I would like to give this package (or should I give the entire workspace?) to another person.
I am thinking to give him a zip file of the files and folders (it contains launch files, python scripts, rviz files etc) so I am expecting he will unzip it in his machine
I would like he can run the launch files without problems
What is what he needs to do for this? (of course he will have ROS installed, that is no problem)
I am thinking perhaps he should do source devel/setup.bash but is this enough?
When sharing a workspace with somebody only the source space src has to be shared. It should contain all our packages with their launch files (*.launch), Python (*.py) and C++ nodes (*.cpp, *.hpp), YAML configuration files (*.yaml), RViz configurations (*.rviz), robot descriptions (*.urdf, *.xacro) and describe how each node should be compiled in a CMakeLists.txt. Additionally you are supposed to keep track of all the Debian packages you install inside the package.xml file of each package.
If for some obscure reason there are things that I have to do that can't be accommodated in the standard installation instructions given above, I will actually write a bash script that performs these steps for me and add it either to the package itself or the workspace. This way I can automate also more complex steps such as installing OpenCV or modifying the .bashrc. Here a small example of what such a minimal script (I generally name them install_dependencies.sh) might look like:
#!/bin/bash
# Get current workspace
WS_DIR="$(dirname "$(dirname "$(readlink -fm "$0")")")"
# Check if script is run as root '$ sudo ...'
if ["$EUID" -ne 0]
then
echo "Error: This script has to be run as root '$ sudo ./install_dependencies.sh'
exit 1
fi
echo "Installing dependencies..."
# Modify .bashrc
echo "- Modifying '~/.bashrc'..."
echo "source ${WS_DIR}/devel/setup.bash" >> ~/.bashrc
echo ""
echo "Dependencies installed."
If for some reason even that is not possible I make always sure to document it properly either in a Markdown *.md read-me either in a /doc folder inside your package, in the read-me.md inside the base folder of your repository or inside the root folder of your workspace.
The receiver then only has to
Create a new workspace
Copy or clone the package files to its src folder
Install all the Debian package dependencies listed in the package.xml files with $ rosdep install
(If any: Execute the bash scripts I created by hand $ sudo ./install_dependencies.sh or perform the steps given in the documentation)
Build the workspace with $ catkin_make or $ catkin build from catkin-tools
Source the current environment variables with $ source devel/setup.bash
Make sure that the Python nodes are executable either by $ chmod +x <filename> or right-clicking the corresponding Python nodes (located in src or scripts of your package), selecting Properties/Permissions and enabling Allow executing file as program.
Run the desired Python or C++ nodes ($ rosrun <package_name> <executable_name>) and launch files ($ roslaunch <package_name> <launch_file_name>)
It is up to you to share the code as a compressed file, in form of a Git repository or a more advanced way (see below) but I will introduce some best practices in the following paragraphs that will pay off in the long run with larger packages.
Sharing a package or sharing a workspace?
One can either share a single package or an entire workspace. I personally think that most of the time one should share the entire workspace instead of the package alone even if you only cloned the other packages from a public Github repo. This might save the receiver a lot of headache e.g. when checking out the wrong branch.
Version control with Git
Arguably the best way to arrange your packages is by using Git. I'd actually make a repository for every package you create (if a couple of packages are virtually inseparable you can also bundled them to a single Git repo or better use metapackages). Then create an additional repository for your workspace and include your own packages and packages from other sources as submodules. This allows your code to be modular and re-usable: You can share only a package or the entire workspace!
As a first step I always add a .gitignore file to each package repository which excludes *.pyc files and another one to the workspace repository that ignores the build, devel and install folders.
You can add a particular repository as submodule to your workspace Git repository by opening a console inside the src folder of your workspace repository and typing
$ git submodule add -b <branch_name> <git_url_to_package> <optional_directory_rename>
Note that you can actually track a particular branch of a repository that you include as a submodule. In case you need a submodule at some point follow this guide.
If you share the workspace repository with someone they will have to have access to each individual submodule repository and they will have to not only pull the repository but also update the submodules with
$ git clone --recurse-submodules <git_url_to_workspace_repository>
and potentially update them to the latest commit with
$ git submodule update --remote
After these two steps they should have a full version of the repository with submodules and they should be able to progress with the steps listed in the section above.
1.1 Unit-testing and continuous integration
Before sharing a repository you will have to verify that everything is working correctly. This can take a decent amount of time, in particular if the code base is large and you are modifying it frequently. In the ideal case you would have to install it on a brand new machine or inside a virtual box in order to make sure that the set-up works which would take quite some time. This is where unit testing comes into play: For every class and function you program you will write a test. This way you can simply run these tests and make sure everything is working correctly. Generally these unit tests will be performed automatically and the working branches merged continuously. Generally the test routines are written with the libraries Boost::Test (C++), GoogleTest (generally used in ROS with C++), unittest (for Python) and QtTest (for GUIs). For ROS launch files there is additionally rostest. How this can be done in ROS is described here and here.
ROSjects
If you do not even want the person you are sending the code to to go through the hassle to set it up you might consider sending them a ROSject. A ROSject is an online virtual ROS environment (by the guys behind The Construct, the main source of ROS courses and of ROS tutorials on Youtube) that can be created and shared very easily from your existing Git repository as can be seen here. The simulation runs entirely in the cloud on a virtual machine. This way the potential of failure is very low but it is not a choice if your code is supposed to run on hardware and not only in simulation.
Docker
If your installation procedure is complex you might as well use a container such as a Docker.
More information about using Docker in combination with ROS can be found here. The Docker container might introduce though a bit of overhead and it is probably no choice for code which should have real-time priority in combination with a real-time patched operating system.
Debian or snap package
Another way of sending somebody a ROS package is by packing it into a Debian or snap package. This process takes a while and is in particular favourable if you want to give your code to a large number of users that should use the code out of the box. Instructions on how this can be done for Debian packages can be found here and here, while a guide for snap can be found here.

ROS setup.bash issue, how to copy ROS workspace correctly

I am new to ROS, now I am taking over one old ROS workspace which is really disordered, it is almost impossilbe for me to fix all compile errors in short time, so I created one new ROS workspace, then copy some related packages(folders) from old ROS workspace to my new workspace as a baseline. then I did below steps:
1, source /opt/ros/$version/setup.bash
2, then echo $ROS_PACKAGE_PATH. --it is so good, only /opt/ros/$version some built-in packages are involved in ROS_PACKAGE_PATH
3,in my new workspace/devel, run source setup.bash. --now something I am not sure/understand happens
after step #3, ROS_PACKAGE_PATH included ROS build-in pacakge, old workspace and my new workspace, and when I type 'catkin build $nodename' in my new workspace, some dependencies from old workspace involved
and still causing issue. my way of copying ROS node is OK or not? what is proper way to create my subset workspace. really appreciate
It is related to workspace overlaying. Here it goes an official reference: (http://wiki.ros.org/catkin/Tutorials/workspace_overlaying)
Why does it happen?
The thing is that, as #JWCS mentioned, you might have the old workspace in your ~/.bashrc file at the moment you have compiled the new_workspace. (Check item 3 of the reference: Chaining catkin workspaces)
How to get rid of it?
Even if you remove it from ~/.bashrc it will keep appearing on $ROS_PACKAGE_PATH, because you have compiled your new_workspace with the old_workspace on the $ROS_PACKAGE_PATH.
The compilation process takes the current $ROS_PACKAEGE_PATH into account and "attach" it to the workspace you are compiling.
Solution
Go to your new_workspace: cd ~/new_workspace
Remove build and devel folders: rm -rf build devel
Source only the ROS installation folder: source /opt/ros/<distro>/setup.bash
Check your $ROS_PACKAGE_PATH, it will contain only the ROS distro installation path
Recompile your new workspace: catkin_make
Source your new workspace: source ~/new_workspace/devel/setup.bash
Check your $ROS_PACKAGE_PATH, it will contain /opt/ros/<distro> + new_workspace
About ~/.bashrc
You can keep the old_workspace source, since you have the new_workspace source just after that. It will not consider the old anymore. But for the sake of simplicity and organization, I recommend you to keep in your .bashrc file only the workspaces you are working on.
Hope it can help you!
Regards
Two things to check. First of all, make sure that you're not sourcing the old repo in your ~/.bashrc. It's common practice to source /opt/ros/VERSION/setup.bash in the bashrc, and when you only have one workspace, to also source ~/MY_WS/devel/setup.bash.
Second, if you already sourced the old workspace, you should just close the terminal before sourcing the new one, otherwise the old one will show up.
As for your method, of cleaning up a workspace, that's a good method. I would start moving one package at a time from the old workspace to the new one, and building everything each time. If you look at the package CMakeLists.txt/package.xml, all the dependencies should be listed. Make sure, if they're from the old workspace, that you copy them over. That should reduce your problems. If there is a package that is truly broken, you'll be able to find and isolate it quickly.
As suggested by JWCS, the best thing you can do is to move one package at a time from the old workspace to the new workspace and recompile it every time, and verify if your CMakelist is the same as the old one.
As for the third step I will use catkin_make to compile the packages.

How do I get protoc onto Cloudbees Jenkins setup

I'm pretty new to Cloudbees and Jenkins, and need to get a gradle build to have access to a compiled version of protoc from Google's protobuf project to generate some necessary Java code for a project.
My best guess offhand would be that I would have to add either a build with an output artifact to build it for the Jenkins server and pull it in with the other project... or add it as a build target for the dependent project... though that seems pretty messy. Is there a better/right way to do what I want?
Turns out it was not too hard to add another Jenkins build, export the protoc binary as an artifact, and import the protoc artifact into the required build.
Build-step:
wget https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.bz2
tar xjvf protobuf-2.5.0.tar.bz2
cd protobuf-2.5.0
./configure --disable-shared
make -j4
strip src/protoc
Leaving this as inspiration, though hopefully someone else comes up with a cleaner solution that I don't know have any clue exists.

Creating a .deb with Apache Ant and without dpkg

I'm trying to create a buildfile for creating .deb installation files.
So far, so fine. My goal is to avoid dpkg, so that the build can be done from any plattform.
Now that I created all the artifacts (control.tar.gz, data.tar.gz, debian-binary) I need an Ant-Task to package these Files in a deb-File.
A deb File is just an Ar(l)-Archive, but I couldn't figure out how to create such an Archive with Ant.
I just found some "ArFileSet", so I think there is a possibility, but I don't know how and where to use this arFileSet.
You could use one of the thirdparty Ant tasks for building .deb packages:
ant-deb-task
JDeb

Resources