|
-
April 7th, 2008, 05:32 PM
#1
Figuring Things Out On Your Own
Hello everyone!
I came across a site that contains exercises to test your knowledge of any given programming language. There are a couple exercises, and parts of exercises that I can do, but most of them are way beyond me. What I'd like to know is how I could go about figuring out how to do these. Here is a link to the page: http://www.knowing.net/PermaLink,gui...ec216192d.aspx
There is one problem in particular though, and that is exercise #3.
Write a program that takes as its arguments a the name of a bitmapped image (Start with images from the Waterloo Repertoire Grayset 2: http://links.uwaterloo.ca/greyset2.base.html) . Apply the Haar wavelet to the pixel values. Save the results to a file.
Can anybody tell me how I could go about figuring out how to do things like this without having to look up specific tutorials?
Note: I'm not looking for specific information on this problem, I'd just like to know how I can further my knowledge when there aren't many resources available for a specific problem.
-
April 7th, 2008, 10:58 PM
#2
Re: Figuring Things Out On Your Own
You can look up Haar wavelets on wikipedia.
-
April 7th, 2008, 11:26 PM
#3
Re: Figuring Things Out On Your Own
What I'd like to know is how to figure out how to do such things as opening a picture file and reading the data to get the pixel values, or anything else that's too specific to find good information on how to do. Should I just google anything I want to do, and then sift through all of the pages until I find a tutorial, source code, or explanation on how to do something similar to what I want to do? Or is there a better approach?
-
April 8th, 2008, 02:47 AM
#4
Re: Figuring Things Out On Your Own
You should problably start by researching how a bitmap file is setup. Once you understand the layout, then you can read in the data you want to target and manipulate it.
-
April 8th, 2008, 05:37 AM
#5
Re: Figuring Things Out On Your Own
 Originally Posted by opivfx
Should I just google anything I want to do, and then sift through all of the pages until I find a tutorial, source code, or explanation on how to do something similar to what I want to do?
That is what I normally do.
 Originally Posted by opivfx
Or is there a better approach?
After a while you will notice that some websites come up again and again (with useful info) in your google results. That is one thing that brought me to CodeGuru. You will find yourself searching those sites first and will go to google less often.
If you are working with MS Windows, for example, you might go to MSDN Library very often.
Last edited by Zaccheus; April 8th, 2008 at 05:40 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|