RSSAmplifier

Blog

Neeraj's Blog

There is always an open source solution..

neerajkarimpuzha.wordpress.comRSS feed ↗10 posts

Latest posts

When Choosing Between Two Ideas Isn’t Really About Logic — A Thought on Bias, Power, and Decision Making

By: Neeraj R One day, while attending a class on human bias, a simple thought experiment turned into something much deeper. It started with a very ordinary scenario. Imagine a group of 10 friends planning lunch outings for the next 10 days.Out of them, 8 are non-vegetarians and 2 are vegetarians. Now, if decisions are [ ]

The Quiet Coup: How AI Is Rewriting Power, Wealth, and Human Agency

By : Neeraj RCategory: Technology / Economics / AITags: AI Monopoly, Future of Work, Economic Inequality, AI Governance, Tech Strategy There’s a comforting story circulating in boardrooms. Replace ten employees with one AI subscription. Cut costs. Move faster. Scale infinitely. It sounds efficient. It isn’t. It’s a transfer of power. The Automation Illusion Mid-sized companies [ ]

Retrieving Facial Landmarks using Intel RealSense SDK

I am trying to print the x and y position of the facial landmarks retrieving through realsense camera.

Retrieving Head Pose Data Using Intel RealSense SDK

I am trying to retrieve the head pose using Intel RealSense. My intention is to find the three angles yaw, pitch and roll of the head. The code is given below.

Files in \opencv\build\x64\vc12\lib location

While you are configure Visual Studio Express for OpenCV you may need the file names in \opencv\build\x64\vc12\lib location. opencv_calib3d2410 opencv_calib3d2410d opencv_contrib2410 opencv_contrib2410d opencv_core2410 opencv_core2410d opencv_features2d2410 opencv_features2d2410d opencv_flann2410 opencv_flann2410d opencv_gpu2410 opencv_gpu2410d opencv_highgui2410 opencv_highgui2410d…

Compiling Mupdf from Source

MuPdf is a free and open source software library written in C that implements a pdf and xps parsing and rendering engine. You can download mupdf from http://code.google.com/p/mupdf/downloads/list. For windows just download mupdf-1.0-tools-windows.zip and install. For linux you cannot get a ready made package. You should download the source file and compile it. For compiling from source, you [ ]

Dynamic Log File

I am now working on a project, in which I have to create a folder structure for each output and store the outputs in that folders. For storing log file, I decided to create a new folder named log , inside that folder structure, and save the log file in that folder for each input. Previously, [ ]

Pdf to Html – update

After studying Michel Tu s code i understand that he is using Apche Pdfbox , to process pdf and to convert it into Json format. So i decided to experiment with pdfbox. Pdfbox is a nice tool to work with pdfs. You can download its binaries or sources from here. With pdfbox you can easily convert pdf to [ ]

PDF to HTML

Now iam working on a new project of Michel Tu. You can get the source code from https://github.com/neumino/PDF-to-unusual-HTML/commit/6c28fd52962e68b17a5142db5bc5a7dc4b00cdc2. I cloned the project to my local system. (You can use either mercurial or git for cloning. You can also download zip file of this project from the above link.) After that I created a java package and [ ]

Sorting Algorithms 2

Quick Sort This algorithm was developed by Tony Hoare in 1960. It is a divide and conquer algorithm. Algorithm is as follows Select an element pivot from the list. Reorder the list so that all elements with values less than the pivot come before the pivot, while all elements with values greater than the pivot [ ]