Wednesday, December 25, 2013

C program for Calculation of the surface and the volume of a cone


C program for Calculation of the surface and the volume of a cone



#include<stdio.h>
#include<conio.h>
#include<math.h>
void main()
{
 float r,h;
 float sa,volume;
 clrscr();

 printf("Enter length of radius and height of cone:\n");
 scanf("%f\n%f",&r,&h);
 
 sa=3.141*r*(r+sqrt(r*r+h*h));
 volume=(1.0/3)*3.141* r * r * h;
 printf("Surface area of cone is: %.3f",sa);
 printf("\nVolume of cone is : %.3f",volume);

 getch();
}





OUTPUT:

Enter size of radius and height of a cone: 3 10
Surface area of cone is: 126.672
Volume of cone is: 94.248






-----------------------------------------
Write a c program to find the volume and surface area of cone
C Program to Find the volume and surface area of cone
java programe find volume and surface area of a cone
C Language And Numerical Methods
How to calculate Volume, Curved Surface Area and Total Surface
How to write a C program to find the surface area and volume of a cone
C Program to Find the volume and surface area of cone

Write a C program to calculate roots of a quadratic equation

Write a C program to calculate roots of a quadratic equation



#include<stdio.h>
#include<math.h>

int main(){
  float a,b,c;
  float d,root1,root2;  

 
  printf("Enter a, b and c of quadratic equation: ");
  scanf("%f%f%f",&a,&b,&c);
   
  d = b * b - 4 * a * c;
  
  if(d < 0){
    printf("Roots are complex number.\n");

    printf("Roots of quadratic equation are: ");
    printf("%.3f%+.3fi",-b/(2*a),sqrt(-d)/(2*a));
    printf(", %.3f%+.3fi",-b/(2*a),-sqrt(-d)/(2*a));
  
    return 0; 
  }
  else if(d==0){
   printf("Both roots are equal.\n");

   root1 = -b /(2* a);
   printf("Root of quadratic equation is: %.3f ",root1);

   return 0;
  }
  else{
   printf("Roots are real numbers.\n");
  
   root1 = ( -b + sqrt(d)) / (2* a);
   root2 = ( -b - sqrt(d)) / (2* a);
   printf("Roots of quadratic equation are: %.3f , %.3f",root1,root2);
  }

  return 0;
}








-----------------------------
C PROGRAMMING SOLVING THE QUADRATIC EQUATION
How do you write a c program to solve quadratic equation
Write the C program that solve the quadratic equation problem
Searches related to write a c program to solve quadratic equation
how to write a java program that solves quadratic equations
write a c program to find the roots of a quadratic equation
write a c program to find the real roots of a quadratic equation
c programming quadratic equation roots
c program to find the roots of a quadratic equation with output
quadratic equation c programming code
quadratic equation program in c language
quadratic formula in c programming
Write a C program to to find real roots of the quadratic

write a C Program to arrange 10 numbers in ascending order

C Program to arrange 10 numbers in ascending order





/*C Program to arrange 10 numbers in ascending order*/


#include<stdio.h>

#include<conio.h>

void main()

{

int i,j,temp,a[10];

clrscr();

printf(Enter 10 integer numbers: \n);

for(i=0;i<10;i++)

scanf(%d,&a[i]);

for (i=0;i<10;i++)

{

for(j=i+1;j<10;j++)

{

if(a[i]>a[j])

{

temp=a[j];

a[j]=a[i];

a[i]=temp;

}

}

}

printf(“\n\nThe 10 numbers sorted in ascending order are: \n);

for(i=0;i<10;i++)

printf(%d\t,a[i]);

getch();

}




OUTPUT:


Enter 10 integer numbers:

2

9

7

4

3

6

8

1

5

10

The 7 numbers sorted in ascending order are:

1     2       3       4       5            6       7       8       9      10





------------------------------------------------
Answers questions like


   
Write a c program to sort 10 numbers in ascending order
Write a program to arrange a list of numbers in ascending order
How to write a program for arranging numbers in ascending order
Write a c program to arrange numbers in ascending order
C++ Arrange 10 random integers in descending order? 
Write a C program to sort a string in ascending order.?
Program to sort numbers in ascending order and use integer point
Sort 10 Numbers In Ascending Order - C And C++
Write a simple program in java to accept 10 number

Sunday, December 22, 2013

ASP.NET Tutorial 8- Create a Login website-Creating Master Page and appl...






MasterPage Source Code


<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <asp:ContentPlaceHolder id="head" runat="server">
    </asp:ContentPlaceHolder>
</head>
<body>
    <form id="form1" runat="server">
   
      <table style="font-family:Arial">
    <tr>
        <td colspan="2" style="width:800px; height:80px; background-color:#3399FF; 
            text-align:center">
            <h1>
                WebSite Header
            </h1>
        </td>
    </tr>
    <tr>
        <td style="height:500px; background-color:#66FFFF; width:150px">
            <h3>Menu</h3>
        </td>
        <td style="height:500px; background-color:#9999FF; width:650px">
             <h3>content</h3>  
                 <div>
        <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
        
        </asp:ContentPlaceHolder>
    </div>
        </td>
    </tr>
    <tr>
        <td colspan="2" style="background-color:#3399FF; text-align:center">
            <b>Website Footer</b>
        </td>
    </tr>
</table>


    </form>
</body>
</html>


Saturday, December 21, 2013

Prolific USB-to-Serial Comm Port LINUX DRIVER

Prolific technology USB serial driver Linux


When you connect USB (or serial to USB) to your Linux device and if it recognises the USB but A in a little different manner e.g usbdev1.XX and 
Not in the expected format like ttyUSB0 (ttyUSB1 , ttyUSB2 .....) . I am lising Out the the Steps which I have followed to Solve the problem.

First I checked What are the Devices are present in my dev directory by following command

# ls /dev/

and the response is as follows

usbdev1.1
usbdev1.2
usbdev1.3
usbdev1.4
usbdev1.5
ttyS0
ttyS1
ttyS2
ttyS3

Now I Give the Following command to Know the Devices specifications

# lsusb

The response is as follows 

Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 1a40:0101 TERMINUS TECHNOLOGY INC. 
Bus 001 Device 003: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port
Bus 001 Device 004: ID 0403:6001 Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC
Bus 001 Device 005: ID 0403:6001 Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC

So I know which device I am looking for . The Device is "Bus 001 Device 010: ID 067b:2303 Prolific Technology, Inc. PL2303 Serial Port"

and its 'usbdev1.3'


Now I Give the followin command to find if the PL2303 driver is present on my kernal or not

# find /lib/modules -name *2303*

this replys me 

/lib/modules/3.2.29-00165-gd626b6d/kernel/drivers/usb/serial/pl2303.ko

So the .ko file is present .Now All I need to do is to Initialise the pl2303.ko to recognize my USB as ttyUSB*

Give the following command to initialize the pl2303.ko 

# insmod /lib/modules/3.2.29-00165-gd626b6d/kernel/drivers/usb/serial/pl2303.ko

Now once again check fot the device 

# ls /dev/

and This time I gives me the response 

usbdev1.1
usbdev1.2
usbdev1.4
usbdev1.5
ttyS0
ttyS1
ttyS2
ttyS3
ttyUSB1

Now I can Use ttyUSB1 as normar USB .


I also created the bash file with the content 

 #!/bin/bash         

insmod /lib/modules/3.2.29-00165-gd626b6d/kernel/drivers/usb/serial/pl2303.ko




and put it into the /etc/profile.d/ folder with 'chmod a+x' privlages
-----------------------------------------------------------
Following Problem 
insmod: error inserting 'pl2303.ko'
insmod error -- Invalid module format
prolific technology usb serial driver linux
Prolific USB-to-Serial Comm Port LINUX DRIVER
prolific usb serial driver linux ubuntu fedora
Fedora Hardware :: Prolific Pl2303 + Serial Modem - Dials But PPP Won't Authenticate
map usbdev1.xx to ttyusb
As a side note, I went to the root file system, there is no /dev/ttyUSB anything...
There is /dev/usbdev1.1, /dev/usbdev1.2, etc...does this help??
usb1
usb2
usb3
usbdev1.1_epXX <-Several
usbdev1.2_epXX <-Several
usbdev2.1_epXX <- Several
usbdev3.1_epXX <- Several
Bus 003 Device 009: ID 1199:6880 Sierra Wireless, Inc.
Bus 003 Device 001: ID 1d6b:001
Bus 002 Device 001: ID 1d6b:001
Bus 003 Device 001: ID 1d6b:002
USB Serial Converter support
insmod: can't read 'usbserial': No such file or directory
insmod: error inserting 'usbserial.ko': 
insmod: Invalid module format
copy linux ubuntu usb driver from one computer to another
modprobe  vendor=0x067b product=0x2303
activate PL2303 Serial Port linux
PL2303 serial port.

Friday, December 20, 2013

C# SQL Database Tutorial 1:How to Connect and Use Local Database ( sql s...


























------------------------------------------------------
Connecting to local SQL Server database (SQL Server Compact 3.5 database file) using C#
c# - Local database, I need some examples
c# windows, local database(sql server), connection
C# How to connect and use a database
Connecting to a Local database
how to connect to localDatabase C#
Can't connect to local database C#
Creating a Connection String and Working with SQL Server LocalDB
SQL Server Compact connection strings
Connecting to SQL Server instance through C#
How to create a local database file with no connection to a server
Can't Connect To Local Database
C# Local Server Example
visual studio - How to use a local database in c#
Connect to SQL Server 2012 Database with C# Visual Studio 2012
c# local database connect
how to open sdf (sql server compact edition) file
Managing SQL Server Compact Edition Databases
Searches related to SQL Server Compact database file
sql server compact edition database file
how to use sql server compact
sql ce
sql compact 4.0 management studio
sql server compact edition limitations
sql server compact edition management studio

Tuesday, December 17, 2013

ASP.NET Tutorial 7- Create a Login website - Creating Sessions and Secu...




















------------------------------------------------
Easy way to create secure ASP.NET login using Session
Session Attacks and ASP.NET
Which is More Secure? Session VS Cookies
ASP.NET Security: An Introductory Guide to Building
Simple Login and Redirect for ASP.NET and Access
Force ASPSessionID to change on login
Session Security in ASP.NET
Handling session and authentication timeouts in ASP

Monday, December 16, 2013

ASP.NET Tutorial 6- Create a Login website - Login page & Validating Use...





















-----------------------------------------------------------
asp.net login validation with database
c# - Validating username and password in a database in asp.net
Validating User Input in ASP.NET Web Pages Sites
Asp.Net Examples: Simple login form example in asp.net
How to create Login page/form and check username,password in database
Simple login form example in asp.net Check Username
How to implement form validation using ASP.Net 2.0
How to Validate User Login in asp.net using DataSet
ASP.NET Form to Database with Form Validation
ASP.NET Database Login
ASP.NET FormDecorator Demo - Validation and Login Controls


Friday, December 13, 2013

ASP.NET Tutorial 3- How to Create a Login website - Creating Database Fo...































--------------------------------------------------------------------
Setting up the Database  ASP.NET Site
Building ASP.NET Web Applications with
ASP.NET Web Pages Databases
ASP.NET Web Forms Tutorial
After creating Website using ASP.NET (c#), sqlserver(Database
SQL server DAtabase
Creating a Database
ASP.NET Web Pages Tutorial
Create a  Database Application in 15 Minutes with ASP.NET
Create a website with ASP.Net
Create an ASP.NET website
ASP.NET Web Pages Databases
ASP.NET Web Forms Database

Sunday, December 8, 2013

ASP.NET Tutorial 1 - Introduction and Creating Your First ASP.NET Web Site




















------------------------------------------------------
Good tutorials for beginners using ASP.NET/C#
A Beginner's Tutorial for Understanding and Implementing ASP.NET
Beginners Introduction to ASP.NET
asp.net tutorial for beginners
Searches related to asp .net tutorial for beginners
asp .net tutorial for beginners free download
asp .net tutorial for beginners pdf
asp.net tutorial
asp.net 2010 tutorial for beginners
asp net tutorial for beginners with examples
ajax tutorial for beginners in asp net
asp net tutorial for beginners youtube
jquery in asp net tutorial for beginners
Beginners Learn .NET and c# Csharp  Lab 1 Day 1

Friday, December 6, 2013

C# Tutorial 102: How to make a Live Currency Converter Using C#




















-------------------------------------------------
currency converter help c#
How best to calculate derived currency rate conversions using C#
Updating the rates in my currency converter c#
currency converter in asp.net c#
Live Currency Conversion using C#
C# Currency Example
Searches related to currency conversion using c#
how to convert currency using exchange rate
convert decimal to currency c#
how to convert currency using a calculator
currency converter using php
Currency Converter Server with C#

Thursday, December 5, 2013

QT C++ GUI Tutorial 27- How to read text file and display file to a text...





QFile file("C:/Users/9589693153/Desktop/Test111.txt");
    if(!file.open(QIODevice::ReadOnly)) {
        QMessageBox::information(0, "error", file.errorString());
    }

    QTextStream in(&file);
    ui->textBrowser->setText(in.readAll());
    file.close();
















----------------------------------------------------------
How to display text from a file to a text browser
Reading and Writing Text | C++ GUI Programming with Qt4
QtCreator GUI open text file
parsing - Load Text File Into Table Widget in Qt
How to read a textfile and display result in gui
Thread: how to use QtextEdit to open & read text files
How to read and display BMP image just using QT's GUI?
QT file reading example
How to load a map in QT GUI application using text file

Wednesday, December 4, 2013

Write a C program to Make Simple calculator


Write a C program to Make Simple calculator




#include<stdio.h>
int main() {
  int num1,num2,opt;
  printf("Enter the first Integer:\n");
  scanf("%d",&num1);
  printf("Enter the second Integer:\n");
  scanf("%d",&num2);
  
  for(;;) {
    printf("\n\n\n\nEnter the your option:\n");
    printf("1-Addition.\n2-Substraction.\n3-Multiplication.\n4-Division.\n5-Exit.\n");
    scanf("%d",&opt);
    switch(opt) {
      case 1:
        printf("\nAddition of  %d and %d is: %d",num1,num2,num1+num2);
        break;
        
      case 2:
        printf("\nSubstraction of %d  and %d is: %d",num1,num2,num1-num2);
        break;
        
      case 3:
        printf("\nMultiplication of %d  and %d is: %d",num1,num2,num1*num2);
        break;  
      
      case 4:
        if(num2==0) {
          printf("OOps Devide by zero\n");
        } else {
          printf("\n Division of %d  and %d is: %d",num1,num2,num1/num2);
        }  
        break;
        
      case 5: 
        return 0;
        break; 
        
      default:
        printf("\n Enter correct option\n");
        break; 
    }
 }
 return 0;
}









--------------------------------------------
 Write a program performing as calculator
 Simple calculator - C Programming Examples
 C Program for simple calculator
 Example of C Program/Code to Simulate a simple calculator
 C Program: Make a Calculator
 Write c program to make calculator 

QT C++ GUI Tutorial 26- Creating Digital Clock by using QTimer and QDate...
























----------------------------------------------------------------
Creating a Digital Clock
Simple digital clock by using Qt
Searches related to qt digital clock
qt 4.7 digital clock
digital clock in a phone
Unable to match current Date and time in Qt  How to take the system date time
Searches related to running date time qt
qt get date and time
qt date time widget
qt date time picker
qt datetime
qt datetime difference
qt datetime format
qt timestamp
qt timestamp milliseconds
qt timer
qt stopwatch
qt timer callback
qt timer in thread
qt timer event example
qt timer widget

Tuesday, December 3, 2013

QT C++ GUI Tutorial 25- How to run any EXE file by clicking a button in Qt
















----------------------------------------------------
Open external file with parameter
How to run exe made of Qt on a computer without Qt
Problem with QProcess when execute different kind of .exe
How to Open execute any batch file using QT
.exe files default to QT
 How to launch web browser, player, e-mail client and pdf  vlc  crome

QT C++ GUI Tutorial 24- How to use QFileDialog

















--------------------------------------------------------------
How to use QDir and QFileDialog in Qt
can the Open File dialog be used to select a Folder
c++ - In the Qt how to open QFileDialog::getOpenFileNames
Qt Toolkit - QFileDialog
 How to use QFileDialog
How to creat open/save dialog with Qt Creator

Sunday, December 1, 2013

QT C++ GUI Tutorial 23- How to open a website in a default user browser
















------------------------------------------------------
Qt: How to open a link in a default user browser?
Qt - How to open a website in a particular browser
How can I open my .html file in a browser
Open link in default browser?
Cannot open webpage with QWebView

Thread: Hyperlink text in QLabel to open web browser
Opening Web Page from Qt Application
Searches related to open website using qt
qt open web page
qt open default browser
qt open file browser
qt open external browser
quicktime player open url
how to open a browser using qtp
Thread: How to open url in default webbrowser - Qt Centre
how to open URL - Qt Centre
opening webpage using qt...

C# Tutorial 101: How to Add or Embed YouTube Videos In C# Windows Form...



















-----------------------------------------------------------------------
Embedding And Playing YouTube Videos In C#
c# - embed video using just url
c# - Play youtube video in windows form
Purify Embedding YouTube Videos method in C#
Watch Embedding And Playing YouTube Videos In C#
Embed youtube videos using .NET (C#)
Searches related to add youtube video to c#
how to add a video to you tube
how to embed you tube video
create you tube video
how to add you tube video to powerpoint
add music to you tube video
add you tube video to wordpress

C# Tutorial 100: How to embed VLC Media Player into C# Windows Forms Ap...




using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace vlc_media_player
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Load_Click(object sender, EventArgs e)
        {
            OpenFileDialog openFileDialog1 = new OpenFileDialog();
            openFileDialog1.Filter = "( *.mp4) |  *.mp4";
            if (openFileDialog1.ShowDialog() == DialogResult.OK)
            {
                axVLCPlugin21.playlist.add(openFileDialog1.FileName, openFileDialog1.SafeFileName,null);

            }
        }

        private void start_Click(object sender, EventArgs e)
        {
            axVLCPlugin21.playlist.play();
        }

        private void stop_Click(object sender, EventArgs e)
        {
            axVLCPlugin21.playlist.stop();
        }

        private void pause_Click(object sender, EventArgs e)
        {
            axVLCPlugin21.playlist.togglePause();
        }
    }
}










------------------------------------------
Does VLC media player have a C# interface
How to Embed The VLC media player in Window Form using C#
I want to add VLC media player in window application
libvlc media player in C#
How to hook VLC media player using c#
VLC Player in C# window form
Searches related to vlc media player c#
videolan vlc media player
media players like vlc

Saturday, November 30, 2013

Java prog#151. How to use JPopupMenu in Java Netbeans




























---------------------------------------------------------------
JPopupMenu: How to use?
An example of the JPopupMenu in action
 Java: submenu in jpopupmenu with separators
Do more with JPopupMenu
A simple example of JPopupMenu
javax.swing.JPopupMenu
 JTable with JPopupMenu
Searches related to jpopupmenu java example
java swing jpopupmenu example
java popup menu example
java submenu example
java menubar example
java swing popup menu
java jpopup
java swing context menu
java popup menu submenu

C# Tutorial 99: How To Add ToolTips To Controls On A Windows Form in C#



















-----------------------------------------
C#: How do I add a ToolTip to a control?
Creating a ToolTip for a Control (Visual C#)
ToolTip.SetToolTip Method
How To Use The Winforms ToolTip Control
Visual C# - Tooltip Control
Tooltip in C# - C#
Searches related to how to use tooltip in c#
c# tooltip example
.net tooltip
vb.net tooltip example
c# add tooltip to button
vb.net tooltip text
vb.net tooltip show
flowlayoutpanel









C# Tutorial 99: How To Add ToolTips To Controls On A Windows Form in C#



















-----------------------------------------
C#: How do I add a ToolTip to a control?
Creating a ToolTip for a Control (Visual C#)
ToolTip.SetToolTip Method
How To Use The Winforms ToolTip Control
Visual C# - Tooltip Control
Tooltip in C# - C#
Searches related to how to use tooltip in c#
c# tooltip example
.net tooltip
vb.net tooltip example
c# add tooltip to button
vb.net tooltip text
vb.net tooltip show
flowlayoutpanel









Friday, November 29, 2013

C# Tutorial 98: How to use ContextMenuStrip (Right mouse click) in C#

















-----------------------------------------------------------
C# context menu strip right click
Searches related to Context Menu Strip c#
c# vista look and feel
left click context menu
contextmenu c#
c# right click menu
c# popup menu example
c# contextmenu event
right click context menu c#
c# contextmenustrip right click
C# Source Codes: Context Menu Strip
Creating Context Menus in C#
Context Menu
c# - How to respond to a ContextMenuStrip item click

Adding Veritcal Scroll to ContextMenuStrip
How do I get a popup menu like window in C#?
How to create a C# context menu from code?
C# context menu


Thursday, November 28, 2013

Java prog#150. How to shutdown the computer from Java














---------------------------------------------------
Shutting down a computer using Java
Shutdown Windows with Java
Java - shutdown computer after program run
Shutting down windows operating system using Java code
Shutdown/Restart/Logoff/Hibernate system in Java
shutdown your system using Java
Searches related to how to shutdown your computer using java
how to shutdown your computer using cmd
how to shutdown your computer using notepad
how to shut down your computer using the keyboard
how to shutdown computer using java program

Wednesday, November 27, 2013

C# Tutorial 97: How to shutdown the computer from C#



















--------------------------------------------------------
How to make a timer to shutdown computer with c#
reboot, shutdown, logoff computer using c#
Windows Shut down a computer using .NET
Shutdown Computer in C#
How To Shut Down Your Computer In C#
how can ShutDown Windows using c#.net
Searches related to How to shutdown the computer from C#
c# shut down
computer shutting down









Tuesday, November 26, 2013

Java prog#148. Determine if internet connection is available using Java

















-------------------------------------------------------
How to check internet connectivity in Java
How to check if internet connection is present in java?
sockets - check internet connectivity in java
How to programmatically check availibilty of internet connection
How to Check my pc is having internet connection using java
Check if there is internet connection [Java]
Searches related to check internet connection java
java check network connection
how to check who is connected to your internet
c# check internet connectivity
android verify internet connection
How to check whether PC is connected to Internet programmatically
Java code to test whether connection to internet can be established

Monday, November 25, 2013

C# Tutorial 96: Determine if internet connection is available using C#






























------------------------------------------------------
How to detect working internet connection in C#
Determine if internet connection is available c sharp
 What is the best way to check for Internet connectivity using .Net C#
check whether Internet connection is available with C#
How to check if connected to the internet in C#
How to check if the internet is available in wp7 using c#

What is the best and accurate way to find internet
How can i notice if the internet connection is up or down ?
Window mobile 6.5.3 development internet connection
How to detect internet connection instantly in C #
Visual C# - Checking Internet Connection
C# - Simply method to detect if the user is connected to
´check internet connection available or not in c#
Searches related to check whether Internet connection is available with C#
check if there is internet connection c#
check if internet connection exists c#
android check if internet connection is available
javascript check if internet connection available
xcode check if internet connection available
python check if internet connection is available





Sunday, November 24, 2013

How to use VMware Linux Mint in Full Screen with VMware Tools


















----------------------------------------------
Resolution problem with Linux Mint15
How to set maximum fullscreen in vmware
Enable full screen on Vmware server/Worstation
Linux Mint on VirtualBox—Linux Mint on VMWare
VMware Linux Mint in Full Screen with VMware Tools
display - How do I get full screen in Mint Linux under VMware player
VMware Linux Mint in Full Screen with VMware Tools

How to Install Linux Mint on VMware Virtual Machine
















-----------------------------------------------
installing Linux Mint 12/13 inside a virtual machine running
How do I install VMware tools properly on Linux Mint 15 Cinnamon
Workstation 10 - Cannot install VMware Tools 3D
An issue installing VMware Tools on Linux Mint 13
Linux Mint 14 VMware image with Tools
VMware Player (5.0.2) Fails to Install Modules
VMware Player 6.0 Released, Install it in Ubuntu and Linux Mint
Trouble installing VMTOOLS in VMPLAYER
Searches related to how to install linux mint on vmware
install linux mint on vmware workstation
install vmware tools in linux mint
installing linux mint on vmware player
install virtualbox linux mint
linux mint vmplayer
install mint virtualbox
linux mint virtual machine
linux mint virtualbox settings
Can't see shared folders in Linux Guest

Saturday, November 23, 2013

Java prog#147. JavaCV : How to Access webcam using javacv and Java Netbeans






















------------------------------------------------------------
JavaCV and WebCam
WebCam working with Java, jLabel, swing, opencv and javacv
JavaCV for webcam
Capture Image from webcam using JavaCV
How to capture and record video from webcam using JavaCV
Help with webcam capture
How to Capture image from Web Cam in Laptop using JavaCV
Accessing the webcam from inside a Java
Accessing a webcam with Java
Webcam Capture in Java

Friday, November 22, 2013

Java prog#146. JavaCV : How to set up Opencv and Javacv in windows 7





























-------------------------------------------------------------------------
Searches related to how to install javacv
How to pack JavaCV / OpenCV in NetBeans
javacv javadoc java netbeans
Installing JavaCV on Windows
How to install JavaCV
javacv demo
javacv android
javacv vs opencv
javacv api documentation
javacv windows
javaCV in NETBEANS on windowsXP platform
opencv java tutorial
opencv java windows
JavaCV Installation Tutorial
OpenCV Lover: JavaCV setup with Eclipse on Windows 7
Installing JavaCV in to Windows

Thursday, November 21, 2013

How to install Cinelerra ( free video editor ) in Ubuntu Linux


















---------------------------------------------------------------------
Howto install Cinelerra in ubuntu
Install Cinelerra Video Editor on Ubuntu 13.04, 12.10
Step to step how to install Cinelerra
How to install Cinelerra on Ubuntu 12.04 13.4
How to install Cinelerra on to Ubuntu 9.10
Installing Cinelerra 4.x on Ubuntu 12.04 64
 Download & Install Cinelerra in V12.04
how to install cinelerra-4.1 Ubuntu
 Help me install Cinelerra -
how to install cinelerra in ubuntu
cinelerra download for ubuntu
cinelerra ubuntu ppa
fedora cinelerra
cinelerra fedora 14


Sunday, November 17, 2013

OpenCV 2.4.7 - How to install and Create Sample Project in Visual Studio

Below are the sample programs


The program below is for opening webcam 

#include <opencv\cv.h>
#include <opencv\highgui.h>

using namespace cv;
int main(){


Mat image;

VideoCapture cap;
cap.set(CV_CAP_PROP_FRAME_WIDTH, 640);
cap.set(CV_CAP_PROP_FRAME_HEIGHT, 480);
cap.open(0);

namedWindow("window",1);
while(1)
{

 try
{
cap>>image;

 imshow("window",image);
 }
catch (Exception& e)
{
    const char* err_msg = e.what();
    std::cout << "exception caught: imshow:\n" << err_msg << std::endl;
}
 waitKey(33);
}

}



The program below is for opening an image

#include <opencv\cv.h>
#include <opencv\highgui.h>

using namespace cv;

int main(int argc, char** argv)
{
    IplImage* img = cvLoadImage( "image.png" ); //change the name (image.jpg) according to your Image filename.
    cvNamedWindow( "Example1", CV_WINDOW_NORMAL );
    cvShowImage("Example1", img);
    cvWaitKey(0);
    cvReleaseImage( &img );
    cvDestroyWindow( "Example1" );
    return 0;
}

Version 2.4.7 Additional Dependencies

opencv_core247d.lib
opencv_imgproc247d.lib
opencv_highgui247d.lib
opencv_ml247d.lib
opencv_video247d.lib
opencv_features2d247d.lib
opencv_calib3d247d.lib


IT Certification Category (English)640x480

Partner Sites

VideoToGifs.com

EasyOnlineConverter.com

SqliteTutorials.com


Top Online Courses From ProgrammingKnowledge

Python Course http://bit.ly/2vsuMaS
Java Coursehttp://bit.ly/2GEfQMf
Bash Coursehttp://bit.ly/2DBVF0C
Linux Coursehttp://bit.ly/2IXuil0
C Course http://bit.ly/2GQCiD1
C++ Coursehttp://bit.ly/2V4oEVJ
PHP Coursehttp://bit.ly/2XP71WH
Android Coursehttp://bit.ly/2UHih5H
C# Coursehttp://bit.ly/2Vr7HEl
JavaFx Coursehttp://bit.ly/2XMvZWA
NodeJs Coursehttp://bit.ly/2GPg7gA
Jenkins Course http://bit.ly/2Wd4l4W
Scala Coursehttp://bit.ly/2PysyA4
Bootstrap Coursehttp://bit.ly/2DFQ2yC
MongoDB Coursehttp://bit.ly/2LaCJfP
QT C++ GUI Coursehttp://bit.ly/2vwqHSZ