Hello OHIF Community,
I hope this message finds you well.
We are currently exploring ways to enhance the OHIF Viewer for our use case and are seeking advice or assistance on several specific functionalities. Specifically, we are interested in:
- Adding an option to share a case with third parties.
- Implementing the capability to add or upload reports for each case.
- Incorporating a feature to request and display clinical history.
- Integrating MONAI models with the viewer.
If anyone has experience with these types of enhancements or can point us in the direction of someone who does, we would greatly appreciate your insights or recommendations.
Thank you in advance for your help!
- Adding an option to share a case with third parties.
This is a server-side responsibility. OHIF is a client-side application. If you want to share a case with third parties, your server needs to generate the correct URL with the correct permission to be able to send. You can add the user interface in OHIF in order to trigger that, but OHIF is not responsible for that.
- Implementing the capability to add or upload reports for each case.
If you have a proper PACS system deployed, you should be able to add and upload reports for each case. You can use formats like DICOM Structure Report or DICOM Segmentation. There are so many DICOM ways to have that or you can have your custom back-end to send reports via Web APIs.
- Incorporating a feature to request and display clinical history.
Again, this is something that you can easily do if you have the data. For example, if you have your server to send the clinical history of the patient, then in a segment, in a OHIF panel, you can basically call the server to receive the data and display it. Here is the documentation for how each panel works.
- Integrating MONAI models with the viewer.
We already have integration with Monai, you can take a look here.
Thank you very much Alireza.