No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
[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 …
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 …
The End.
valiandra