Skeleton of an image in Matlab
Skeleton of an image is in many ways same as skeleton of human body. It can be defined as if we perform erosion of a set A with a circular disk which is largest to fit in that set and it touches the...
View ArticleSnake Game In C#
Introduction to snake game: Snake game is a computer video game and a classic one in which a player moves a snake whose food is displayed at various points on screen and if snake hits boundary wall of...
View ArticleBilinear interpolation for image zooming in Matlab
Interpolation: Interpolation is a technique in which we find approximate value of a function at a point with given value of that function at two or more other points. Matlab Code is given at end It has...
View ArticleThreading in C# with example
Thread Thread is the smallest piece of program that can be managed by operating system. A process may consist of many threads. Threads run concurrently. Basically they work in queue which is scheduled...
View ArticleC# drawing Circle,Line,Rectangle and Ellipse on forms
Drawing on C# forms is very easy we just have to learn a few things first. To draw on C# form we need to first define a graphics object which is simply you can say a canvas or a paper on which we will...
View ArticleSql Create Database with Visual C#
To get a complete working Database click the download link at the bottom of this tutorial. First of all you need to make a new project of type winform application. After doing that you will see a form...
View ArticleC# sleep function to give delay
In C# delay is given using Thread.Sleep(t) function with ‘t’ is representing time for which we want delay in milliseconds. For one second delay we write following statement. Thread.Sleep(1000) For two...
View ArticleSearch as you type implementation in C# using Sql Database
We have seen it on google, bing and other search engines that when you write a keyword or a pair of them the search box shows some related data to what you type. This can also be implemented in Sql...
View ArticleLog transformation of an image in matlab
Log curve maps a narrow range of grey-level values in the input image into a wider range of output levels Mathematical Form: Log transformation in general in shown by this equation s=clog(1+r) Uses: 1....
View ArticleCanny Edge Detection with Matlab
Fully working code of canny edge detection is given at the end. For explanation read complete article thanks. Edge Detection: Edges in an image are those points which show sudden change of intensity...
View ArticleHow to mute Microphone using C# in Windows 7
Windows 7 gives programmer a lots of API’s which with he/she can control hardware and software. One of these API’s are Core Audio API. This API allows programmer to develop apps that use Audio in...
View Article