Tag Archive for: embedded linux

Konsulko Group presented two technical talks at ELC North America 2018

Konsulko engineers gave two well-received presentations at the Embedded Linux Conference, the premier vendor-neutral technical conference for companies and developers using Linux in embedded products. Slides and abstracts are available at the links below.


Tuesday, March 13 • 2:00pm – 2:50pm
Automating Open Source Hardware Lightning with Home Assistant and MQTT – presented by Leon Anavi


Tuesday, March 13 • 4:20pm – 5:10pm
poky-tiny and Beyond, or Trying to put the Yocto in Yocto Project – presented by Scott Murray

ELC North America was held in Portland, Oregon, March 12-14, 2018.

What We Learned from Jim Ready

When Jim Ready passed away at the end of December, he left a legacy in the world of software development that continues to this day and will continue for many years to come. He drove the commercial acceptance of Linux as an embedded operating system in its early days, taking it all the way from “how can this work?” to widespread adoption across one industry after another.

Jim was also an articulate (if occasionally reluctant) spokesman for both Embedded Linux as a community and using the open source methodology for commercial software — the symbiotic parts of a never-ending process.

With his pioneering work with VRTX and Ready Systems, Jim was already well respected in embedded systems when he founded MontaVista Software in the final months of the last century (1999) with the Internet bubble bursting and Linux still very young (and very PC and server focused).

He had the crazy idea that open source software could be a viable commercial solution for every conceivable embedded device. This was a huge leap, basing a business not on the tightly controlled “precious jewel” world of RTOSs, but instead on the constantly evolving, messy organism that was the Linux community. That required looking at commercial software development in the open source model, moving beyond static releases, updates and lifecycle programs, focusing on process instead of product, on outcomes instead of systems, on management and integration instead of authorship.

Many of us at the Konsulko Group worked at MontaVista in those early years. We experienced first hand the paradigm shift and the hard work it took to make it happen. Jim gave us the chance to do something we loved (and in most cases already pursued as a hobby) and turn it into our life’s work. Almost two decades later, through the lasting relationships we formed and the lessons we learned working with him, we are thankful for the opportunities, mentoring and friendship Jim gave us, and that’s part of his legacy as well.

Konsulko joins Developer Panel Keynote at AGL AMM in Tokyo

At the Automotive Grade Linux All Member Meeting at the Hilton Tokyo, Scott Murray, Konsulko Group Senior Staff Software Engineer, will bring his 20+ years experience developing with Linux, plus expertise building custom distributions with OpenEmbedded and the Yocto Project, to the Developer Panel Keynote on Tuesday, February 20, 2018, 11:10am – 11:50am. It promises to be a lively and informative discussion among some of the top engineers working with AGL. If you are planning to attend the AMM, don’t miss this session. We hope to see you in Tokyo!

Konsulko at February conferences in Europe and Japan

The Konsulko Group will be well represented at February 2018 conferences with members of the team attending:
* FOSDEM Brussels February 3-4
* Automobile Grade Linux All Member Meeting Tokyo February 20-21
* 4YFN & Mobile World Congress Barcelona February 26-March 1
* Embedded World Nuremberg February 27-March 1
Hope to see you there. Please contact us if you’d like to meet up at one of the shows.

New video released of “The Konsulko Story”

CEO Pete Popov and CTO Matt Porter talk about the Konsulko Group’s 20-years of experience with Embedded Linux, and introduce the Konsulko team.

Created by multimedia director Alex Vlacos, the video was filmed in October 2017 during the Embedded Linux Conference in Prague, where key Konsulko engineers gathered to give technical papers and demonstrate new technology.

Konsulko Group presented 3 technical talks at ELCE in Prague

ELC is the premier vendor-neutral technical conference for companies and developers using Linux in embedded products. Now in its 12th year, the conference gathers user-space developers, product vendors, kernel and systems developers to collaborate.

Senior engineers from the Konsulko Group gave three technical presentations at ELC Europe 2017 in Prague on October 23-25:

  • Free and Open Source Software Tools for Making Open Source Hardware, Leon Anavi
  • Building a Remote Control Robot with Automotive Grade Linux, Leon Anavi
  • State of AGL: Plumbing and Services, Matt Porter & Scott Murray

We also demoed two Automotive Grade Linux (AGL) platforms at the Attendee Reception and Sponsor Showcase on Tuesday, 24th October.

Konsulko Group expands open source security practice with launch of European subsidiary in Sofia, Bulgaria

Sofia, Bulgaria – October 23, 2017 – Konsulko Group, a California-based open source software services company, announced today that it has completed the formation of a European subsidiary, Konsulko Ltd, based in Sofia.

“With decades of experience, Konsulko provides expert community and commercial embedded Linux and open source software development worldwide. Our engineers in Sofia have been an important part of our team for the last three years. Finalizing our subsidiary there will allow us to grow more rapidly”, said Konsulko CEO, Pete Popov.

“Security continues to be a growing business for us”, said Matt Porter, CTO, “With our substantial security expertise in Sofia, we’ll be able to further help our customers protect their connected devices from the growing threats of security breaches.”

The new subsidiary is fully operational with offices centrally located in Sofia. Konsulko Ltd. engineers are engaged in major projects with key Konsulko clients in Europe and the USA.

About Konsulko Group

Konsulko helps companies around the world develop successful products, offering consulting, product engineering, support and capability building at every stage of engagement. In addition to open source security, Konsulko engineers have been recognized for their contributions to Automotive Grade Linux and the GENIVI Alliance, and have been active participants in both the OpenEmbedded and Yocto open source projects for many years.

GPGPU Offload Phase 1

Overview

As part of an ADAS project using embedded Nvidia GPUs, we are conducting an investigation into the current state of GPGPU support including development, debug, and performance analysis tools starting with Nvidia GPUs. Since large customer proprietary applications can be diffcult to work with, we needed a simpler test case we could modify and extend. We decided to make an open source test application that has some of the charactersitics of a typical production ADAS application. Since there is a lot of public research into lane detection and warning systems, as well as some bits of free software available to leverage in implementation, we chose to make a simple Lane Departure Warning System (LDWS) application.

Lane Departure Warning System Overview

Overview

LDWS is an OSS application which serves as our test bed for GPGPU tool evaluation. The phase 1 version can be found on the ldws-p1 branch in the LDWS repository. LDWS is a C++ application developed using OpenCV 3 and is under a mix of Apache and MIT licenses. Complete build and use documentation can be found in the project README.

Requirements

The phase 1 requirements are:

  • Run on Linux desktop system with Nvidia GPU
  • Be written in C/C++
  • Leverage both OpenCV and existing FOSS lane detection projects
  • Accept video input from Xle
  • Detect lanes in video and highlight the current lane
  • Detect position in lane and warn if crossing lane marker
  • Lane detection and warning need only be good enough quality to demonstrate concept
  • Support two different test videos
  • Support CPU only and OpenCL offload modes via runtime selection
  • Display realtime and average frames per second

Design

LDWS is implemented as a C++ application leveraging cmake for build, OpenCV 3 for image processing, tclap for command line arg processing, and libconfig++ for configuration file processing. It is composed of a main video handling loop, a configuration storage class, and a lane detection class.

On initialization a config store is instantiated which reads all configuration variables from combination of command line options and configuration file options. A file or capture device is opened to provide the video feed to the video handler. Each video frame is then processed using a sequence of algorithms to detect a set of lines present. Using the detected lines, the ProcessLanes() method of the LaneDetector class then determines lane boundaries and draws the detected boundaries on the video for output. The video handler computes frames per second values and draws the processed video frame before fetching another frame of input video.

LDWS in CUDA mode with dual lane test video

During development it was decided it was better to pull a Phase 2 requirement of CUDA support into Phase 1 so LDWS supports runtime switching (via a command line switch) between CPU-only, OpenCL-offload, and CUDA-offload. LDWS displays the mode as CPUOpenCL, or CUDA during execution as well as the per-frame FPS value measured. At completion of a video input file, LDWS prints the average FPS maintained during the entire run.

The basic image processing algorithms that LDWS employs are:

LDWS leverages the lane detection algorithm implemented in the opencv-lane-vehicle-track project and the lane departure warning algorithm implemented in the Python-based Lane Departure Warning project. The lane detection algorithm performs a simple angular filtering of lines followed by a selection of the best line based on distance of points from midpoint. The lane departure sensing using a simple line crossing methodology. A horizontal meter line is drawn on the display with the current crossing points of the detect lane marker edges tracked by dots on each end of the meter. If the positioning dots move too far either direction on the meter then a threshold event indicates that the vechicle is moving out of the lane.

LDWS provides a command line option to enable display of intermediate video frame data during each step of the image processing sequence. These screenshots show the detected edges and lines, respectively, for one frame of video.

Canny edge detector output
Hough transform line detector output

Limitations and Improvements

The simple algorithms employed result in only a good enough quality lane detection system. Use of Canny edge and Hough line detection from a vehicle mounted camera perspective is highly susceptible to shadows from trees and other overhead objects on the road as well as being poor in low-light or night conditions. Note the shadows in the following frame on a sunny day.

Road with shadows from overhead objects

Notice how the Canny edge detector finds the horizontal edge of the shadows in the region of interest.

Shadow lines from Canny edge detector

The lane detection algorithm itself assumes the vehicle is always at the midpoint on the image which is not the case when changing lanes so the algorithm with vote up lines during lane changes that are not actually lane markers. The result of all of these factors means that the application suffers from losing track of lane markers in all but ideal conditions. The following is an example of it losing sync periodically.

LDWS loses sync, unable to detect the right lane marker

Functional improvements can be made by employing one or more of the following methodologies:

Some or all of these approaches are generally combined with the existing basic Canny edge and Hough transform algorithms for a production grade system.

Performance

Background

Describe three modes of operation and limits of tools.

Summary

Explain perf stat CPU utilization and in-app FPS figures.

ModeCPU%FPS
CPU87.2339.3
CUDA87.2359.8
OpenCL195.4235.0

Analysis

The basis of our performance analysis centers around statistical sampling using the Linux perf tool. We start by examining the CPU mode case in the following perf report fragment. The important aspect to note is the top offender in our application with is the call to cv::HoughLinesProbabilistic. That is by far the biggest consumer of CPU cycles in the application. This is completely expected as our lane detection algorithm heavily relies on detecting all lines in each frame of the video feed. You may notice other curious consumers of CPU time in libQt5Gui and libavcodec-ffmpeg.so. These are all products of the display of each resulting frame to the UI and capture/decode of video frames from our source video feed. Since we are only concerned about the portion of our ADAS algorithms that could be offloaded to a GPU, we discard these areas as out-of-scope for this particular project. In a production system, we would avoid using inefficient OpenCV blending/drawing paths and would utilize hardware assisted decode of video frames.

#       Overhead       Samples  Command / Shared Object / Symbol
# ............................  ...................................................................................................................................................
#
    99.67%          5551        ldws
       32.34%          1441        libopencv_imgproc.so.3.1.0
          21.51%           856        [.] cv::HoughLinesProbabilistic
            |
             --21.48%--_start
                       __libc_start_main
                       main
                       cv::HoughLinesP
                       cv::HoughLinesProbabilistic

           2.40%           252        [.] cv::CvtColorLoop_Invoker<cv::RGB2Gray<unsigned char> >::operator()
            |
            ---__clone
               start_thread
               cv::ForThread::thread_loop_wrapper
               cv::CvtColorLoop_Invoker<cv::RGB2Gray<unsigned char> >::operator()

           2.11%            77        [.] cv::FillConvexPoly
            |
             --2.06%--_start
                       __libc_start_main
                       main

       28.67%          1048        libQt5Gui.so.5.6.1
           2.54%            91        [.] 0x00000000002f3a13
            |
            ---0x7f0b431dfb26
               0x7f0b431e3012
               0x7f0b431bca13

       12.49%           765        libavcodec-ffmpeg.so.56.60.100
                                      no entry >= 2.00%
        5.12%           204        libopencv_core.so.3.1.0
           4.55%           164        [.] cv::hal::addWeighted8u
            |
            ---_start
               __libc_start_main
               main
               LaneDetector::ProcessLanes
               cv::addWeighted
               cv::arithm_op
               cv::hal::addWeighted8u

Another way to visualize our CPU usage is in the following Flamegraph. Note that the widest elements in the graph are the hot spots in CPU utilization. If we again discard the video input and UI areas, it can be seen that the cv:HoughLinesProbabilistic() is the top offender. Just to the left, it can be seen that LaneDetector::ProcessLanes() is a close second. We know from our development of the lane detection algorithm that the ProcessLanes() functionality is not going to be offloaded as it is basic post processing of the lines gathered from the Hough transform.

Dual lane CPU Flamegraph

Another way to look at our application is with a traditional callgraph. By zooming in on our area of concern, we get the results seen in the following diagram. Once again, excluding those paths on the right that are out-of-scope, we can clearly see that cv::HoughLinesProbabilistic is a great place to focus on performance improvements.

Dual lane CPU Callgraph

Tag Archive for: embedded linux