146
votes
64answers
5k views
Where can one find free software icons / images?
This may not be directly related to programming, but I always find it hard to get quality icons that can be used for software.
I currently have the need for some type of "green checkmark image", and …
120
votes
52answers
6k views
Storing Images in DB - Yea or Nay?
So I'm using an app that stores images heavily in the DB. What's your outlook on this? I'm more of a type to store the location in the filesystem, than store it directly in the DB.
What do you think …
17
votes
9answers
922 views
Near-Duplicate Image Detection
What's a fast way to sort a given set of images by their similarity to each other.
At the moment I have a system that does histogram analysis between two images, but this is a very expensive …
17
votes
15answers
4k views
What is the best image manipulation library?
I would love find out which is the best image manipulation library for which platforms and languages. Likely you could use a library under multiple platforms with the right API or Plugin capabilities. …
15
votes
9answers
839 views
Storing a large number of images
I'm thinking about developing my own PHP based gallery for storing lots of pictures, maybe in the tens of thousands.
At the database I'll point to the url of the image, but here's the problem: I know …
15
votes
8answers
806 views
Detecting if two images are visually identical
Sometimes two image files may be different on a file level, but a human would consider them perceptively identical. Given that, now suppose you have a huge database of images, and you wish to know if …
15
votes
11answers
1k views
How can I measure the similarity between two images?
I would like to compare a screenshot of one application (could be a Web page) with a previously taken screenshot to determine whether the application is displaying itself correctly. I don't want an …
11
votes
10answers
5k views
What is the difference between “JPG” / “JPEG” / “PNG” / “BMP” / “GIF” / “TIFF” Image?
I have seen many types of image (extension) but have never understood the real difference between them. Are there any links out there that clearly explains the difference between them.
Is there a …
11
votes
8answers
6k views
High Quality Image Scaling C#
I want to scale an image in C# with quality level as good as Photoshop does. Is there any C# image processing library available to do this thing?
10
votes
3answers
2k views
Are there any ‘ok’ Image Recognition libraries for .NET?
I want to be able to compare an image taken from a webcam to an image stored on my computer.
The library doesn't need to be one hundred percent accurate as it won't be used in anything mission …
10
votes
7answers
2k views
Efficient JPEG Image Resizing in PHP
Whats the most efficient way to resize large images in PHP?
I'm currently using the GD function imagecopyresampled to take hi-res images, and cleanly resize them down to a size for web viewing …
9
votes
7answers
426 views
Computing the difference between images
Do you guys know of any algorithms that can be used to compute difference between images?
Take this webpage for example http://tineye.com/ You give it a link or upload an image and it finds similiar …
8
votes
5answers
191 views
Where can I find free pictures for game?
I am developing a game. To test my map engine, I need pictures of 8 directions character walking. As a programming, it is not too difficult to write program, but it is a big problem for me to draw …
8
votes
4answers
341 views
what does a byte in memory (RAM) look like? [closed]
i know a byte is made up of 8 binary bits. and i know what a computer RAM module looks like.
but all you see is a black microchip.
i can imagine what a byte would look like in my mind by drawing a a …
8
votes
7answers
831 views
How to download an image from web showing the progress of the download in c# using winforms?
I download an image from an URL asynchronously using WebRequest this way:
public void Download(string url)
{
byte[] buffer = new byte[0x1000];
WebRequest request = HttpWebRequest.Create(url);
…
