Spray On fabric that enable designer to spray liquid material directly onto the body using Aerosol Technology

Spray-On fabric that enable designer to spray liquid material directly onto the body using Aerosol Technology

Imperial Researchers have created a spray-on Fabric that enables designers to spray liquid material directly onto the body with the help of Aerosol Technology. The fabric dries instantly, to make innovative clothes that can be washed and re-worn. Spanish fashion designer Dr Manel Torres created the material as part of his PhD in the Department of Chemical Engineering, working with Professor Paul Luckham.

He showcased his collection of spray-on haute couture with a fashion show at the college. Dr Torres has now set up a spin-out company commercializing the innovative research work.

Source: Imperial College, London

Read More..

How to turn your images into cartoon without using photosphop

How to turn your images into cartoon without using photosphop


There is an online app called befunky, it helps you to cartoonize your pictures without the knowledge of photoshop, with this creative online picture editing tool  cartoonizing your images is just a click away. 
img source: blog.befunky.com

To use the to cartoonize your image, visit Befunky.com/cartoonizer/index.php and then upload the image you desired to cartoonize. You can as well use your webcam, with a simple click youll get your image converted stylishly in a jiffy.

Even more with these tools you can choose the output color of your image.

Source: Befunky






Read More..

CSS color table generator in C using a recursive function

Ok, Ive got an obsession with that CSS color table generator. I modified the source because I didnt like it the ideas to input a number of rows and colls, and the number of colors to be rows X colls, and that random function because I cant control it.
So I created a recursive function with a variable named i who is between 256 and 4096. So I have a palette of 3840 different colors. Its realy nice... and the good part is that the colors are arranged in a sort of gradient that make it more easy to choose a color... So this is the output of the program in a html file:
and below you have the code...

Read More..

Java code to reverse a word or sentence ending with using recursion

/*
Program to reverse a word or sentence ending with . using recursion
*/
import java.io.*;
class reverseWord
{
static BufferedReader br = new BufferedReader(new
InputStreamReader(System.in));
public static void main(String args[]) throws IOException
{
reverseWord call = new reverseWord();
System.out.print("Enter characters & . to end : ");
call.print();
}
void print() throws IOException
{
char c = (char)br.read();
if(c!=.)
{
print();
System.out.print(c);
}
}
}


/**
* ALGORITHM :
* ---------
* 1. Start
* 2. Accept a sentence from user with full-stop(.) at the end.
* 3. Using recursion, print the sentence in reverse order.
* 4. End
*/

/*
OUTPUT :
------
Enter characters & . to end : stressed.
desserts
*/


Read More..

Sharpen bitmap using Convolution

The previous exercise "Blur bitmap using Convolution". By changing the matrix of Convolution class, we can use it to sharpen bitmap.

 class Convolution {

// matrix to sharpen image
int[][] matrix = { { 0, -1, 0 }, { -1, 5, -1 }, { 0, -1, 0 } };
...


Sharpen bitmap using Convolution




more: Something about processing images in Android

Read More..

Blog Archive

Powered by Blogger.