Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~647 People Reached
Favorite Forums

2 Posted Topics

Member Avatar for yo123

[CODE]import java.awt.Graphics; import java.awt.image.BufferedImage; import java.io.*; import javax.imageio.ImageIO; /** * * @author VALIANDRA */ public class convertgreyscale { public static void main(String args[]) throws IOException { //input path File e = new File( "C:/aaa.jpg" ); BufferedImage bi= ImageIO.read(e); int w = bi.getWidth(); int h = bi.getHeight(); //to create grayscale image …

Member Avatar for valiandra
0
580
Member Avatar for valiandra

Actually I'm new in java, only 2 year, but force to develop advance application for my final year degree project. I'm going to developt image sketching and sketched recognition for police force. My question are: 1. What technique that i could use to to developt to combine several image in …

0
67

The End.