-2

Now I have a local folder with 12989 images. The total size is 410MB. On the other hand I have another csv dataset, which has each image's name, main color and some other information. So, how can I visualize all the images without calling one by one? Thank you!(if possible, I prefer using d3.js. )

Jess
  • 75
  • 8
  • Add what you have done till now for accomplishing this requirement and provide details of where exactly you are stuck – Sumit Surana May 07 '17 at 08:38

1 Answers1

-1

You could use bunch of rect elements to show each image's color, then show the full image on mouseover. There are countless ways to arrange them, depending on what data you have and what you're trying to show. Some examples:

Adam Pearce
  • 9,243
  • 2
  • 38
  • 35
  • In the example of "list", I saw the image source is a file with extension .t. It's a file with thousands of images. `` So how can I covert a file with huge amount of images into a file like that? Thank you! – Jess May 22 '17 at 06:25
  • I don't remember exactly, something like https://askubuntu.com/questions/135477/how-can-i-scale-all-images-in-a-folder-to-the-same-width – Adam Pearce May 22 '17 at 17:43