You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use of SVG
The current iteration in React uses SVG as the underlying technology for displaying the data. We found it to be not very performant when dealing with large amount of images.
a Read Only Visualization
This graph allows you to preview all the images by hovering your mouse on them and highlight the groups or clusters the images fall under (eg Screenshots, Paper Documents etc). There's no support for editing the underlying data.
Proposed Improvement
We want to explore the use of HTML canvas to display this data
We want to make it possible to edit certain metadata associated with the image
Implementation Details
Assume that you are given a data about 2000 images in a JSON file. The JSON looks like this :
Overview
The goal of this task is to explore a user friendly way to organize and tag large amount of image data into groups.
Background
This issue builds on the work we did with this visualization
Interactive UI can be accessed here - https://tattle.co.in/articles/covid-whatsapp-public-groups/t-sne/
We built a UI to show large amount of images in a 2D graph. This graph was built using React. The component's code can be seen here - https://github.com/tattle-made/website/blob/master/src/components/molecule/covid-whatsapp-tsne-map.jsx
Shortcomings
The current iteration in React uses SVG as the underlying technology for displaying the data. We found it to be not very performant when dealing with large amount of images.
This graph allows you to preview all the images by hovering your mouse on them and highlight the groups or clusters the images fall under (eg Screenshots, Paper Documents etc). There's no support for editing the underlying data.
Proposed Improvement
Implementation Details
Assume that you are given a data about 2000 images in a JSON file. The JSON looks like this :
Use Javascript to draw a circle/point representing the image in a SVG or canvas.
We need to build the following user stories :
Recommendations :
Resources
The text was updated successfully, but these errors were encountered: