# Version 0.3.0 (April 22, 2022) This version of MONAI Deploy App SDK introduces a couple of new features, as well as a number of defect fixes. Please see details in the following sections. Please visit [GETTING STARTED](/getting_started/index) guide and follow tutorials. You can learn more about SDK usage through [DEVELOPING WITH SDK](/developing_with_sdk/index). Please let us know how you like it and what could be improved by [submitting an issue](https://github.com/Project-MONAI/monai-deploy-app-sdk/issues/new/choose) or [asking questions](https://github.com/Project-MONAI/monai-deploy-app-sdk/discussions) ## What's new ### Clara Viz Operator This operator uses [Clara Viz](https://pypi.org/project/clara-viz/) to provide interactive view of a 3D volume including segmentation mask. A [tutorial](https://github.com/Project-MONAI/monai-deploy-app-sdk/blob/main/notebooks/tutorials/03_segmentation_viz_app.ipynb) is provided to demonstrate how to use this new operator in an application, e.g., a typical segmentation inference application. ### STL Surface Mesh Conversion Operator This operator converts a volume image to surface mesh, in [STL file format](https://en.wikipedia.org/wiki/STL_(file_format)). Its API allows the client to control if smoothing needs to be applied, and if only keeping the largest connected component; the latter is useful when multiple disjoint segments are in a volume image, and the application needs to control if all or only the largest to be included in the output. ## What's fixed/updated - [The AI Spleen Segmentation](https://github.com/Project-MONAI/monai-deploy-app-sdk/tree/main/examples/apps/ai_spleen_seg_app) application is updated to include the STL conversion operator for surface mesh output - [The AI UNETR Segmentation](https://github.com/Project-MONAI/monai-deploy-app-sdk/blob/main/examples/apps/ai_unetr_seg_app/app.py) is updated to include the STL conversion operator, in lieu of the [DICOM Segmentation Writer](https://github.com/Project-MONAI/monai-deploy-app-sdk/blob/main/monai/deploy/operators/dicom_seg_writer_operator.py). This is because that the model outputs 13 labeled segments, exceeding the maximum of 8 supported by the [DICOM Segmentation Writer](https://github.com/Project-MONAI/monai-deploy-app-sdk/blob/main/monai/deploy/operators/dicom_seg_writer_operator.py) - Add Clara Viz operator [#235](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/235) by [@AndreasHeumann](https://github.com/AndreasHeumann) - Make DICOMSeriesToVolumeOperator consistent with ITK in serving NumPy array [#238](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/238) by [@mmelqin](https://github.com/MMelQin) - Update README.md [#253](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/253) by [@dbericat](https://github.com/dbericat) - Add the STL conversion operator [#260](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/260) by [@mmelqin](https://github.com/MMelQin) - Add DICOMTextSRWriterOperator to the autosummary section for doc gen [#263](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/263) by [@mmelqin](https://github.com/MMelQin) - Corrected the conditional block to use the correct and only named input obj [#264](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/264) by [@mmelqin](https://github.com/MMelQin) - Updated the png converter operator following changes to Image ndarray index order [#265](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/265) by [@mmelqin](https://github.com/MMelQin) - fix: Address typos in bilinear mode usage in the `Spacingd` operator [#271](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/271) by [@swederik](https://github.com/swederik) - Relaxed the restriction on non-DCM files, and raise error based on settings [#273](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/273) by [@mmelqin](https://github.com/MMelQin) - Fix doc typos [#274](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/274) by [@mmelqin](https://github.com/MMelQin) - Added 3rd party copyright notices [#278](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/278) by [@mmelqin](https://github.com/MMelQin) - Fix pixel spacing in DICOMDataLoaderOperator for some X-rays [#280](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/280) by [@jlvahldiek](https://github.com/jlvahldiek) - Fix shm issue [#284](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/284) by [@slbryson](https://github.com/slbryson) - Fix Issue #245: DICOM Seg has multiple slices of seg image on the same frame [#285](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/285) by [@mmelqin](https://github.com/MMelQin) - Update MONAI version after having validated compatibility [#288](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/288) by [@mmelqin](https://github.com/MMelQin) - Add support for MONOCHROME1 [#290](https://github.com/Project-MONAI/monai-deploy-app-sdk/pull/290) by [@mmelqin](https://github.com/MMelQin)