tags:

views:

440

answers:

2

respected sir,

we are the students of andhra university our project is image transport protocol.only 20% of my project is completed, we implemented RSA enc and dec, text comp and decompression but we don't implement image comp and decompression and image to text conversion and text to image conversion and tommarow is last date for submission we don`t have any idea about those algorithms, so please give the java code for those algorithms. please give me the reply.

+4  A: 

We don't generally do other peoples' homework, but why not google for discrete cosine transform java. It gives plenty of links to begin with.

Joonas Pulakka
A: 

Why don't you use ImageIO?

I mean, it's nice to know how DCT works and to write it yourself but programming is all about not reinventing the wheel.

Aaron Digulla
-1. A good way to learn programming is to keep reinventing as many wheels you can possibly think of.
sharkin
So where do you stop? Should every beginner to build their own CPU, first?
Aaron Digulla
One of the things you really need to master with modern languages is the vast amount of libraries. It's nice if you can program quicksort but I wouldn't be happy to see you actually doing it for any real project.
Aaron Digulla