No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
7 Posted Topics
We want to do Travel Planner as our major project. Can we take information of the route define by the user in google maps?? | |
My code is : [CODE] public final class Pixels{ BufferedImage img=null; public int w,h; public Pixels(){ try { // Read from a file File file = new File("1.jpg"); img = javax.imageio.ImageIO.read(file); } catch (IOException e) { } } public void checkfunction(){ h=img.getHeight(); // errorpoint w=img.getWidth(); } [/CODE] Errors: Exception in … | |
i am doing a project on barcode reader . i have just started it with a class pixelgrabber to grab the pixel,i mean grey value. And now i am confuse about how to distinguish the barcode part from other part of picture. plz suggest.. | |
i am trying to implement an AI part for the FPS type of game ...heard it is called Aerial Combat game...... my basic idea for the AI portion is that I an going to have two Finite State Machines running simultaneously, one for locomotion or movement decision and another for … | |
hey i had started coding in java.I want to display the pixels format of image with the following code but i get errors...Can anyone suggest my code?? [code]public void Pixelvalue(Image img){ int[] pixelss = new int[w * h]; PixelGrabber pg = new PixelGrabber(img, 0, 0, w, h, pixelss, 0, w); … | |
helo i am a begineer in java field..and i have to know about image processing so plz help me to get start with java in image processing. | |
i am beginner in java field.can anyone suggest me how to start image processing in java... |
The End.