All Blog Posts

← Back to Blog Home

Imported 96 published WordPress posts.

Posting Guidelines

  • Every post should have one clear top-level category.
  • Every post should have tags that help connect it to related writing.
  • Use Photo Travel for visual travel stories and itinerary-style posts.
  • Use Thoughts & Musings for personal essays, reflections, and broader notes.
  • If a post extends earlier work, link back to the previous post.

All Posts (Newest First)

Recent Posts

Align a 3d mesh model with its image

robotics-perception-systems

Code : [github/mesh_image_align] Today I am trying out this one simple idea I have in my mind. Given an image of an object (I will use banana) and it’s 3d mesh model the objective is …

Docker for Computer Vision Researchers

systems-engineering-tooling

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 …

Organizing my Neural Network Codes

systems-engineering-tooling

Amazing progress has been made in deep learning. I have been Tensorflow for a while now. I started out with tf0.6 then upgraded to tf0.12 then to tf1.0. The latest version is tf1.10 which is …

Vector Differentiation

math-estimation-optimization

Just a quick cheatsheet on derivatives (of scalars and vectors) wrt of a vector. This is borrowed from the wiki page : Matrix Calculus. Vector Calculus CAS Tricks The following document is …

tmux cheatsheet

systems-engineering-tooling

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 …

Part-1 : Why should I study differential equations?

math-estimation-optimization

What’s the point of studying differential equations? Can we not do away with them? I almost never see an application of those as a computer science or an ECE systems student. Is it …

Ubuntu Internet Sharing

systems-engineering-tooling

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 …

My Trip to Inner Mongolia

photo-travel

I had this wonderful opportunity to visit Inner Mongolia (In China) to experience the majestic grasslands in September of 2017. I traveled to Hulunbuir (呼伦贝尔市). I traveled solo with a car …

Apps to use in China for traveling

life-travel-reflections

China can be quite overwhelming experience if you arrive here unprepared. I present some practical tips from my experience to make traveling in China easier. I believe this can be quite …

Optimal Triangulation for Tuning Keypoint Co-ordinates

robotics-perception-systems

Given a set of correct keypoint matches and a fundamental matrix, to optimize the coordinates of these key points such that they satisfy the epipolar constraint. A point (x,y) on the left …

Image Keypoint Descriptors and Matching

robotics-perception-systems

[GitHub] Extracting keypoints from images, usually, corner points etc is usually the first step for geometric methods in computer vision. A typical workflow is: keypoints are extracted from …