I recently got the Intel Compute Stick 2 (NCS2). It can do neural network inference. The process is to start with a frozen tensorflow file (.pb), then convert it to IR format (which the NCS2 can understand). You need to use OpenVINO for it. There was an earlier API which is now defunct. Here is … Continue reading Intel Compute Sticks 2
Category: Linux/ Ubuntu Howtos
Click here to view all the blog articles related to Linux & Programming
Docker for Computer Vision Researchers
Here is my docker images. https://hub.docker.com/r/mpkuse/kusevisionkit/ In recent years there has been some buzz on Docker. Although some power computer vision/robotics researchers and developers do use docker for development, an overwhelming majority do not use it. Most people simply install the libraries on their Ubuntu and get to work. While this solution is simple, it … Continue reading Docker for Computer Vision Researchers
tmux cheatsheet
Follow this simple and to the point tutorial : https://danielmiessler.com/study/tmux/. From Bash tmux ls --> show list of sessions tmux new -s session-name --> new session tmux a --> attach to default session tmux a -t session-name --> attach to a particular session tmux kill-session -t session-name Session (Ctrl-b) $ --> rename session name d --> detach Window (Ctrl-b) c … Continue reading tmux cheatsheet
Ubuntu Internet Sharing
I have this specific configuration wherein I have a PC (urop) with two network interfaces. One connected to the internet. Second network interface connected to another PC (tx2). I can access internet on urop. I can ssh to tx2 from urop. I want to accomplish the following. To access the internet from tx2. tx2 need not … Continue reading Ubuntu Internet Sharing
Sending Email from Terminal using mutt
Often times one deals with long running programs and need a quick way to know when the program is finished or intermediate reporting. Simplest way is to email yourself the progress say hourly or so. Simplest way is to setup an gmail account with mutt on your workstation. I use the commandline tool mutt to … Continue reading Sending Email from Terminal using mutt
GTX 1080 on Ubuntu 14.04 (Trusty)
I recently got the new Geforce GTX 1080. It is a monster. Boasts 8 gigs of memory and 2500 cuda cores. I am using it for my deep learning experiments. I had an existing GTX 980 Ti which I use for display. I already had nvidia driver 343 installed from apt-get and cuda-7.5 running fine. … Continue reading GTX 1080 on Ubuntu 14.04 (Trusty)
Graphics Programming MiddleWare
It is often frustrating to start programing in OpenGL. I came across this OpenSceneGraph which is a middle ware between the 3d application and OpenGL. It is a C++ based toolkit. This toolkit is categorized as a render engine. Render engines are common tools in game development. There is a wiki article which list a … Continue reading Graphics Programming MiddleWare
Installing cuDNN Ubuntu 14.04
cuDNN is a cuda library which provides basic operations like forward and backward passes for neural networks on GPU. This is used by caffe and other toolkits. You can download cuDNN from : https://developer.nvidia.com/cudnn. Note that you need to login to be able to download. This post is just for my own reminder on cuDNN installation. … Continue reading Installing cuDNN Ubuntu 14.04
Programming with Joystick on Linux
Was trying to figure out a way to programatically use the Cyborg Controller lying around in the lab. My final objective is to control objects and view points in RViz. In this blog, I will explore how to get inputs from it with a C/C++ program. The Linux kernel provides an API to control this. … Continue reading Programming with Joystick on Linux
List of Packages for Computer Vision Developers (Ubuntu 14.04)
I am some-what intermediate developer mainly focusing on Computer Vision related development. I recently had to upgrade to Ubuntu 14.04 (Trusty) and turned out I rely on quite a lot of libraries and tools which are not available by default. Here is my list of packages : Feel free to mentions packages/libraries that you as … Continue reading List of Packages for Computer Vision Developers (Ubuntu 14.04)
You must be logged in to post a comment.