Snake 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 ArticleTcp server-Client using Asynchronous Calls C#
When writing your applications, some times you need to access data from network or send data to network. This is accomplished in c# by using tcp sockets or socket programming. Socket is identified by...
View ArticleDynamic Memory Stack in C++ using Linked List:
STACK: While writing your applications you need to use the stack. Stack is basically a LIFO (Last In First Out). It is opposite to queue which is FIFO(First In First Out). Stack is very easy to program...
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 ArticleMarr-Hilderth Algorithm For Edge Detection in an Image Matlab Code
Edge Detection: In most image processing applications we have to deal with the edges in an image. There are different algorithms for finding edges in the images every one has its own attributes and...
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 ArticleGetting Started Android On Windows
Installation and Configuration of Android Enviroment In this tutorial you will see how to install and configure new android development environment. If you are new than i recommend you to download...
View ArticleHow to create new Android Virtual Device (AVD)
In previous article you were able to install and configure your android environment. After installing and configuring android environment the next step is to have some basic knowledge of AVD ( Android...
View ArticleBuilding Your First Android Application
Before starting,you should have sound knowledge and installed the following: 1) JDK 6 2) Eclipse 3) Sdk manger Now in this article you will learn how to build your first app on android. we start from...
View ArticlePlay With Android Emulator
In previous article we successfully installed and configured Android Emulator . Now in this article we are going to playing with emulator. I will tell you some secret way into the emulator e.g How...
View ArticleStructure Of Android Project
Beginner often confuse about the structure of android project. They have no idea about what is inside SRC , RES and in other important folders of android project.Here we have some basic structure of...
View ArticleBeyond Hello World In Android Part 1
Welcome in this article we are going to create app, get a machine setup and set app to real phone and finally we will send a message to Logcat window as well. So lets get started. We need to make a...
View ArticleBeyond Hello World In Android Part 2
In Part 1, you were able to learn how to send your app on real device , but some people complained me that they failed to send app on their phone.In this article you explore the problem and find the...
View Article