Chrome Pointer Harshavardan61

Saturday, February 1, 2014

Mario Forever 3 - PC








Mario Forever is a clone of the original Super Mario which tries to recreate in a very loyal way the classic Nintendo game.

Our goal in the game is the same: we have to go throughout the level bypassing obstacles and avoiding our enemies. Depending on the obstacle, you'll have to avid it or you'll have to jump on them.

In our way to the end of the level we'll find dozens of coins. There are some item boxes too where you'll find extra powers that will make the character grow or launch fireballs.

Save the princess. do you dare? Download Super Mario 3: MarioForever and enjoy Mario on your PC

 ScreenShots:





Download Links:

Read More

Wednesday, December 18, 2013

Basic Image Processing Using Raspberry Pi

Basic Image Processing

Difficulty: beginner

This tutorial aims to be a basic introduction to image processing with the Raspberry Pi and Python. We will write a Python script to grab webcam images, which we will then alter and display. In later tutorials we will look at more complicated functionality, and the use of more peripherals and a robot.

REQUIREMENTS:






You may also need an Internet connection in order to download libraries.

INSTRUCTIONS:

If you are not using one of our SD cards or images, then please install our custom libraries.
To begin the tutorial, start up a text editor and create a new file called “basic.py”; we will use this script as a test bed to try out the image processing library. Alternatively, you can use the interactive Python environment to test the code as you go along.
The first thing our Python script needs to do is import the image processing library. So enter
from imgproc import *
at the top of the script or into a interactive Python session. This loads and sets up the library read for use.
The imgproc module provides us some basic functionality to use a webcam, access image data and display images on screen, as well as some higher level image processing functions we will use later.
We’ll begin by opening the camera device. Enter this next, on the next line beneath the import statement
my_camera = Camera(320, 240)
This opens the camera device, setting the size of the captured images to 320 pixels width by 240 high.
On its own this statement doesn’t do a great deal: we’ve opened a Camera but don’t actually do anything with it, so let’s grab an image from the camera and store it.
my_image = my_camera.grabImage()
Now we have an image, so as a final step let’s display it on screen. First we must open a viewer window, and then we need to tell the viewer to display the image we capture. Finally we add a delay, to give us time to see the image (not necessary from the interactive session).
# open a view setting the view to the size of the captured image
my_view = Viewer(my_image.width, my_image.height, "Basic image processing")

# display the image on the screen
my_view.displayImage(my_image)

# wait for 5 seconds, so we can see the changes
waitTime(5000)
Your complete code should now look like this:
from imgproc import *

# open the webcam
my_camera = Camera(320, 240)
# grab an image from the camera
my_image = my_camera.grabImage()

# open a view, setting the view to the size of the captured image
my_view = Viewer(my_image.width, my_image.height, "Basic image processing")

# display the image on the screen
my_view.displayImage(my_image)

# wait for 5 seconds, so we can see the image
waitTime(5000)
Now run your code from the terminal with the command
python basic.py
There will be a delay as the camera loads up and grabs an image. Afterwards you should see the image appear in a new window.
Now we have the basic setup, we can start playing with the image data.
The image data is a 2 dimensional array of pixels, and each pixel is a tuple of 3 values: the relative intensity of the red, green and blue colours in the range 0 to 255 (inclusive). You can access a given pixel in the image by treating the image as an array, and by providing a tuple of the x and y position of the pixel.
# get the value of the pixel at x position 120 and y position 64 in the image
pixel = my_image[120, 64]
# pixel is now a tuple of the red, green and blue of the requested pixel

# An alternative method
red, green, blue = my_image[120, 64]
# red, green and blue now contain the intensity of the red, green and blue
# channels respectively
To set the value of a pixel, you assign a 3-tuple to the position, beware you can only set values to between 0 and 255 (inclusive).
# Set the value of pixel at x position 120 and y position 64 
# to an orange colour
my_image[120, 64] = 255, 128, 0
Now as a use of this functionality, we will take every predominantly red pixel in the image and change it to blue. Here is some commented Python code which will do this.
# iterate over ever pixel in the image by iterating over each row and each column
for x in range(0, my_image.width):
  for y in range(0, my_image.height):
    # get the value of the current pixel
    red, green, blue = my_image[x, y]

    # check if the red intensity is greater than the green
    if red > green:
      # check if red is also more intense than blue
      if red > blue:
      # this pixel is predominantly red
      # let's set it to blue
      my_image[x, y] = 0, 0, 255
To run this code, place it in the script after we grab the image from the camera. Make sure you also put it before the image is displayed to the screen, otherwise it will only be altered after it has already been copied to the display.
This signals the end of this first basic tutorial. From here you may like to move onto the more advanced tutorials, or experiment with the code you have. There is also a listing of all of the functions in the Python module, if you just want to play around. The interactive interpreter is a good way to get familiar with the functions.
Keep in mind when accessing pixels that you need to grab an image from the camera before using it, and if you set the colour of pixels, you need to display the image afterwards to see the change on screen.
Read More

Sunday, November 24, 2013

Where's My Water 2 Free Download




 Download Links:



Description:
Get ready to join Swampy, Allie, and Cranky on their NEXT exciting adventure!
The sequel to the most addicting physics-based puzzler from Disney has finally arrived. Where’s My Water? 2 launches with three brand new locations including the Sewer, the Soap Factory, the Beach. Best of all, the puzzles are all free! Cut through dirt, and guide fresh water, purple water, and steam to help Swampy and his friends!

Key Features:

• Play 100+ levels and challenges with a brand new look in the Gator universe featuring Swampy, Allie, Cranky, and Mystery Duck!

• Introducing ‘Challenge Modes’ to replay the levels in explosive new ways! 

• Dig as fast as you can and get as many duckies as possible in ‘Duck Rush’ levels!

• ‘Tri-ducking’ is now faster, better and more fun with boosts, such as Vacuum, Dropper, and Absorber! Small fees may be required for these additional boosts.

• Connect through Facebook and see if you can beat your pals on the adventure!

• Experience fun mechanics that are uniquely designed for each character!
Screen Shots:



Download Links:

Read More

Friday, November 22, 2013

Top 5 Android Launchers Latest Pro Version



This Pack Includes Top 5 Android Launchers Pro Version.

  • Action Launcher pro v1.9.1 patched.
  • Apex Launcher v2.1.0 + pro apk.
  • Next Launcher 3D v2.05 patched.
  • Nova Launcher v2.2.3 + Prime v1.1 + Notifier v2.3.
  • Smart Launcher v1.10.11 pro apk.


Download Links:

Screen Shots:
1.Action Launcher:
2.Apex Launcher 
3.Nova Launcher 
4. Smart Launcher
 5.Next Launcher

Download Links:


Read More

Tuesday, October 22, 2013

N7 Player FULL Version





Download Links:



Description
We have always believed that music player experience can be something more. This is exactly why we have created n7player 2.0. Many graphical improvements had been made and the user experience is even better than before. n7player no longer relies on Android Media Scanner and uses it's own media library.

Key features:
- Unique user interface, based on OpenGL, consisting of innovative, fully multi-touchable album covers wall
- Supported audio formats: mp3, mp4, m4a, ogg, wav, 3gp, mid, xmf, ogg, mkv(4.0+), flac (3.1+), aac (3.1+)
- 5 band graphic equalizer with presets – requires Android 2.3+
- Gapless playback
- Environmental effects, bass boost and sound virtualization technology (SRS/Dolby Surround) (2.3+)
- Automatic and manual album art and artist image downloader
- Tags editor for all supported audio formats
- File browser (SD card) with filters
- Skins
- 1x4, 2x4 widgets
- Lockscreen widget with direct unlock
- Headset support with many options
- Sleep timer
- Shuffle/repeat
- Lyrics support, using the embedded track lyrics & musicXmatch plugin
- Last.fm scrobbling
- Support for m3u playlists.

Reviews
"n7player makes browsing your own library and finding music to listen to fun again."
n7player is an innovative 3D mp3 and audio player available only on Android. It visualizes your music as a single plane full of album covers. You can zoom in and out using multi-touch to see different views of your music. The main application screen is like an interactive tag cloud which can be easily explored to find your mp3 files. Artist names transforms smoothly to album covers, when pinched-to-zoomed. The minimalistic design and smooth interface allows users to quickly pick their favorite music from their library.
n7player has also the most advanced cover art downloading function available on the market. It can download the missing album arts both by its own and by easy to use dedicated screen, where the user can search and pick an album art from the internet.
Android 2.3+ is required to use Equalizer & other sound effects.

Screenshots:






Download Links:


Read More

MX Player PRO-Ad Free Version



                  Download Links:

1.Click to Download-Mx Player Pro.apk



Description
THIS IS THE AD-FREE VERSION OF MX PLAYER.
MX Player - The best way to enjoy your movies.
a) HARDWARE ACCELERATION - Hardware acceleration can be applied to more videos with the help of new H/W decoder.
b) MULTI-CORE DECODING - MX Player is the first Android video player which supports multi-core decoding. Test result proved that dual-core device’s performance is up to 70% better than single-core.
c) PINCH TO ZOOM - Zoom in and out with ease by pinching and swiping across screen.
d) SUBTITLE SCROLL - Subtitles can be scrolled to move back and forth faster.
e) KIDS LOCK - Keep your kids entertained without having to worry that they can make calls or touch other apps. (plugin required)

Subtitle formats:
- DVD, DVB, SSA/ASS Subtitle tracks.
- SubStation Alpha(.ssa/.ass) with full styling.
- SAMI(.smi) with ruby tag support.
- SubRip(.srt)
- MicroDVD(.sub/.txt)
- SubViewer2.0(.sub)
- MPL2(.mpl/.txt)
- PowerDivX(.psb/.txt)
- TMPlayer(.txt)

Screenshots:




                                
Download Links:

Read More

Friday, October 4, 2013

Plants Vs Zombies-2012[pc]


Get ready to soil your plants as a mob of fun-loving zombies is about to invade your home. Use your arsenal of 49 zombie-zapping plants — Peashooters, Wall-nuts, Cherry Bombs and more — to mulchify 26 types of zombies before they break down your door.
One of the top tower-defense action games ever, Plants vs. Zombies™ features zombies with their own special skills, so you'll need to think fast and plant faster to have a successful strategy and combat them all. But be careful how you use your limited supply of greens and seeds — as you dash to battle the fun-dead, obstacles like a setting sun, creeping fog and a swimming pool add to the challenge.




Download Links:




Plants vs. Zombies is a favorite for all ages, from those who grew up with classic arcade action games to kids. The fun never dies!
WINNER OF OVER 30 GAME OF THE YEAR AWARDS*
Game Features
Conquer zombies in all 50 levels of Adventure mode — through day, night and fog, in a swimming pool and on the rooftop
Battle 26 types of zombies including Pole-Vaulters, Snorkelers and Bucketheads, each with its own special skills
Earn 49 powerful perennial plants and collect coins to buy a pet snail, power-ups and more
Open the Almanac to see all the plants and zombies, plus amusing "facts" and quotes
Collect 47 fun-dead achievements and show off your zombie-zapping prowess
Enjoy all the zombie-zapping fun of the hit PC/Mac game.
Hilarious graphics, great soundtrack and a bonus music video
Need coins for great new stuff? Buy up to 600,000 coins right from the Main Menu
Includes all the mini-games and the full features of the original game
Made by PopCap, the creators of Bejeweled, the #1 puzzle game in the world.

Screen Shots:








Read More

Thursday, October 3, 2013

Techbash'13-Events By Tecktors(20&21 Sep,2013)

Video done for the Inaguration of
Techbash'13,a National Level Technical Symposium,
held on September 20&21,2013, on behalf of Tecktors-Department of ECE,
Sri Shakthi Institute of Engineering Technology,
Coimbatore.



Photo Courtesy
T.Srinath,
C.Pradaab,
V.Ashwanth Krishna.

VFX By
T.V.Harshavardan,
ECE - A,
2011 - 2015,
Sri Shakthi Institute Of Engineering & Technology,
Coimbatore.


Read More

Labyrinth-v1.5.2.apk









Description
Labyrinth is the classic game where you control a steel ball by tilting a wooden labyrinth. The game has over 1000 levels created by the community and you can easily create more levels of your own.
Features:
- Download new levels directly from within the game.
- 1000+ (yes one thousand) levels.
- 60 FPS (Where supported) 
- Shadows. 
- Optional 3d-walls, changing perspective when tilting phone. 
- Physics simulation when falling into holes. Makes it possible to slide on a hole edge without falling. 
- A carpenter level with calibration. 
- Autosaving of completed levels. 
- Easy starting levels for newbie players.
- Sound. 
- Tactile feedback. 
- Many more...
 

Screen Shots:



Download Links:

Read More

Saturday, September 28, 2013

Minuum Keyboard v1.1.3 APK





Download Links:





Minuum is a tiny, one-dimensional keyboard that frees up your screen space while allowing you to type fast and accurately. Type quickly without worrying about being precise, thanks to smart auto-correction.SIMPLIFIED TOUCHSCREEN TYPING
Most existing keyboards take an approach similar to cramming a full typewriter into a touchscreen device. This gives us keyboards that cover up half the usable touchscreen space (or more), obstructing your content. Minuum gives you back your screen space by reducing the standard keyboard to a single dimension.

HOW MINUUM WORKS IN PRACTICE
Minuum re-imagines the keyboard by minimizing a standard layout into a single line, letting you type quickly and accurately without needing large keys. This minimalism is enabled by a specialized auto-correction algorithm that allows highly imprecise typing. These algorithms interpret, in real time, the difference between what you type and what you mean, getting it right even if you miss every single letter.

DISCOVER MORE
The Minuum linear keyboard for touchscreens is just the first step toward a “type anywhere” future. Minuum will let you type on wearable devices like smart watches, game controllers, and more devices of minimum size. By supporting this app, you help to enable that vision.

MINUUM KEYBOARD FEATURES AT A GLANCE

MORE SCREEN SPACE
Recover more than half of the usable touchscreen space you lose when typing on traditional virtual keyboards.

FAST SLOPPY TYPING
Type fast without worrying about being precise, thanks to smart auto-correction.

LARGE-FINGER FRIENDLY
Use key magnification through a zoom view for precise entry of letters, numbers, and punctuation—especially useful if you have large fingers.

FAMILIAR KEYBOARD LAYOUT
You already know how to type with Minuum—it’s just the QWERTY layout, minimized.

DIFFERENT ALPHABET ARRANGEMENTS
Choose from alternate keyboard layouts—such as “QWERTZ,” “AZERTY,” “A-Z.”

FULL FUNCTIONALITY
Get everything you’d expect in a keyboard (such as, punctuation, space, backspace, and enter) without losing your screen space.

EXPANSION TO FULL-SIZED KEYBOARD 
Press with two fingers on the keyboard to switch between mini and full-sized modes (useful for URLs and passwords).

SMART WORD PREDICTION
Speed up your typing by choosing from suggestions made by a predictive engine that learns from you based on your word list, word combinations, and language use patterns.

VOCABULARY CONTROL
Minuum learns from your vocabulary, and you can delete words from your dictionary though a handy pop-up display.

GESTURE SHORTCUTS
Slide your fingers to the corners for quick, convenient access to all your features via pop-up keys.

LANGUAGE CAPABILITY
Initial beta releases of the Minuum keyboard are English-only, but as we widen the beta test we encourage you to give us feedback at support.minuum.com about adding different languages.

VOICE TYPING
Experience hands-free text entry via Google Voice Typing for voice-to-text typing when performing other activities.
What’s in this version : (Updated : Sep 18, 2013)


Fixed random capitalization issues
Improved accuracy
Fixed bugs in Samsung/HTC apps
Fixed interaction with hardware keyboards
Improved punctuation after candidate word choice
Required Android O/S : 2.3.3+
Screenshots :







Download Links:









Read More