A Recursive Algorithm to Find all Paths Between Two Given Nodes in C++ and C#

Problem Outline This I tackled previously when working on the design and implementation of routing optimization algorithms for telecommunications networks. Given that a wide area network with nodes and interconnecting links can be modelled as a graph with vertices and edges, the problem is to find all path combinations

Analyzing FlyCapture Images obtained from Flea Digital Cameras

Flea2 Camera Physical Layout The photograph shows the physical setup for grabbing images from a Flea2 camera (by Point Gray Research) mounted above a Xaar inket printer. This represents a prototype used to obtain images of microarray spots printed to glass sample slides, in “Format7” (partial image) mode, as the printhead moves across trays containing …

Continue reading ‘Analyzing FlyCapture Images obtained from Flea Digital Cameras’ »

Linux Snippets

Some assorted odds and ends in no particular order to save me re-Googling this kind of stuff… Itentify if you are 32-bit or 64-bit $ uname -a Convert png into jpg $ convert file.png file.jpg To open KDE Advanced Text Editor (kate) with root priviliges: $ kdesu kate … and enter root password when prompted.