I installed Orthanc server on my Ubuntu and uploaded some test dicom files.
What I have to do next is istall some plugins.
I want to install this plugins:
You can also download precompiled LSB binary packages (Linux Standard Base), that should run on most 64bit GNU/Linux distributions: https://lsb.orthanc-server.com/
The Orthanc JSONC configuration file describes the plugins that will be loaded. Excerpt from the default configuration:
// List of paths to the plugins that are to be loaded into this
// instance of Orthanc (e.g. "./libPluginTest.so" for Linux, or
// "./PluginTest.dll" for Windows). These paths can refer to
// folders, in which case they will be scanned non-recursively to
// find shared libraries. Backslashes must be either escaped by
// doubling them, or replaced by forward slashes "/".
"Plugins" : [
],
As mentioned, if you add a folder to this list, Orthanc will attempt to load all plugins from this folder.
If you are using a prepackaged Orthanc version, such as the Ubuntu package, please note that this entry will not be empty and will point to a location on the filesystem (such as /usr/share/orthanc/plugins/) where you can add plugins if required.