Category Archives: Image Processing Tutorial

To run you must install .Net Framework: v2.0

When you have developed a .NET application and then you want to run the executable file, you may get the following error: “To run you must install .Net Framework: v2.0.50727 …” Simply, just download the Microsoft .NET Framework and install on your PC. Some cases, restart the PC is required. Cheers.. Download this article here:… Read More »

Load & Display Image using OpenCV

Let’s start to create our first project! 1. Open OpenCV workspace: Click Start–>All Programs–>OpenCV–>OpenCV Workspace MSVC6 2. Create new C++ source file: Click File–>New–>C++ Source File. Put the file name & the folder. Now you have a blank editor to write the code. 3. Write the following code: #include “cv.h” //main OpenCV header #include “highgui.h”… Read More »

cxcore100.dll or highgui100.dll not found error

Several days ago, my friend ask me about DLL file linking error. This is the problem: PROBLEM: When I run my project, OpenCV gave an error like this: “This application has failed to start because cxcore100.dll was not found. Re-installing the application may fix this problem” SOLUTION: Add OpenCV DLL (…OpenCV/bin) directory to system PATH.… Read More »

How to setup OpenCV ?

As I mentioned before, OpenCV is an open source library of computer vision in C/C++. Before you can use it, of course you must have Visual C/C++ or Visual.Net installed in your PC. Me, I’m using Visual C++ 6.0 for my project. The following are the procedures to setup OpenCV: Download the OpenCV installation file… Read More »

OpenCV: An Easy Way of Computer Vision Programming

OpenCV is an open source of computer vision library which is developed by INTEL in the C/C++ platform. It is a very powerful library which provides various library for many application in computer vision system, such as matrix manipulation, basic image processing, structural analysis, motion analysis, object recognition & real time interfacing. Web resources:Official webpage:… Read More »

Video & Image Acquisition using MATLAB

This article is a part of module I had prepare for the Shortcourse on “Machine Vision Application for Oil Palm Grading”, at the Faculty of Electrical & Electronics Engineering, Universiti Malaysia Pahang, Kuantan-Pahang. I was appointed by my colleague, Mas Kamarul, as invited instructor for the topic Real Time Interfacing using MATLAB. In the machine… Read More »