Title
Image data management system
Category
Data Management
Challenge
This challenge provides an opportunity for 1 to 3 teams to develop a prototypical Image Data Management System (IDMS). The challenge includes the following components:
- Front-end dashboard prototype in React (preferred) or Angular consuming REST api developed as part of Challenge 2.
- Back-end database and RESTful API developed in Django and Django Rest Framework.
- (Optional) – Reuse database from Challenge 2 or create new for use in GraphQL API developed in Django or similar technology. Teams for challenge 2 and 3 should be prepared to talk about the tradeoffs using a RESTful api vs a GraphQL API.
Sub-Challenge 1: IDMS Front-end Dashboard Prototype
Using React and MaterialUI (or Angular) develop a prototypical dashboard that a user can login to and access their image collections and corresponding metadata. Prototype should support visualization of images provided by any underlying tool (such as the CBI renderer) in the form of displaying a TIFF, JPEG, or PNG file. Metadata should be accessible to some degree in the front end. List of possible use cases:
1. Use case 1: As a user I want to login to the IDMS system and review my image collections and corresponding meta data.
a. This base use case requires using the API developed as part of Challenge two. To facilitate development of dashboard the Challenge 1 team should be able to take the idms_data.json file (to be provided) and populate the dashboard with that information while Challenge Team 2 is developing the database and API. Abstract out the acquiring of data (file-based or API-based) used to populate the interface to facilitate this parallel development aspect.
2. Use case 2: As a user I want to update select metadata in the interface and populate the backend database.
a. Metadata tied to a backend tool (such as the renderer) should be updated in that tools data backend using that tool’s RESTful api. The backend update to be coordinated and provided by Challenge Team 2.
3. Use case 3: As a user I want to retrieve an image from a collection based upon a specific image or tile id.
a. View image provided from backend tool within the user interface. The user should be able to select an imagecollection and specify retrieval of a specific image via the RESTful API for display within the dashboard.
Sub-Challenge 2: IDMS Backend Database and RESTful API Prototype
In collaboration with the team on Challenge 1, create a backend database and REST API using Django and the Django Rest Framework (or similar). This API will be consumed by the team developing the frontend dashboard. This feature should also communicate, via an existing REST API, with a tool backend for accessing image data. Below are the following use cases to develop.
1. Use case 1: As a developer, I need to provide a REST API to be utilized by Challenge Team 1.
a. This REST API should provide the following support:
i. Retrieve list of users, projects, image collections and image collection meta data for display in the dashboard.
ii. Update of meta data in the database and backend tool database.
iii. Retrieval of image data from backend tool based upon generic frontend API query
2. Use case 2 (optional): As a developer, I want to containerize the application for ease of deployment via Docker/Singularity.
Sub-Challenge 3 (optional): GraphQL API
Similar to challenge 2 but the team must develop a GraphQL API instead of a REST API. Compare the tradeoffs of using a GraphQL API approach vs a REST API approach. Use cases:
1. Use case 1: As a developer I need to provide a GraphQL API similar to the API in Challenge 2.
a. Work with both Challenge Team 1 and Challenge Team 2 to design and implement the API.
2. Use case 2: As a developer work with Challenge Team 1 to implement this API in the dashboard.
Benefit
Provide uniform access to image data across a variety of backend toolsets.
Helpful Tools, Packages, or Software
Python, Django, Django Rest Framework, React, MaterialUI, Javascript, HTML, CSS, CBI Renderer, Docker, SQLite, PostgreSQL
Test Data
Use / access to CBI renderer tool or stand-in needed