Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Segmentation state restructure to add main representation #19

Merged
merged 20 commits into from
Mar 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions common/reviews/api/core.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ type CPUImageData = {
};

// @public (undocumented)
function createAndCacheDerivedVolume(referenceVolumeId: string, options: DerivedVolumeOptions): ImageVolume;
function createAndCacheDerivedVolume(referencedVolumeId: string, options: DerivedVolumeOptions): ImageVolume;

// @public (undocumented)
function createAndCacheVolume(volumeId: string, options: VolumeLoaderOptions): Promise<Record<string, any>>;
Expand Down Expand Up @@ -830,7 +830,7 @@ interface IImageVolume {
// (undocumented)
origin: Point3;
// (undocumented)
referenceVolumeId?: string;
referencedVolumeId?: string;
// (undocumented)
scalarData: any;
// (undocumented)
Expand Down Expand Up @@ -987,7 +987,7 @@ export class ImageVolume implements IImageVolume {
// (undocumented)
origin: Point3;
// (undocumented)
referenceVolumeId?: string;
referencedVolumeId?: string;
// (undocumented)
scalarData: Float32Array | Uint8Array;
// (undocumented)
Expand Down Expand Up @@ -1251,7 +1251,7 @@ interface IVolume {
// (undocumented)
origin: Point3;
// (undocumented)
referenceVolumeId?: string;
referencedVolumeId?: string;
// (undocumented)
scalarData: Float32Array | Uint8Array;
// (undocumented)
Expand Down
4 changes: 2 additions & 2 deletions common/reviews/api/streaming-image-volume-loader.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ interface IImageVolume {
metadata: Metadata
numVoxels: number
origin: Point3
referenceVolumeId?: string
referencedVolumeId?: string
scalarData: any
scaling?: {
PET?: {
Expand Down Expand Up @@ -818,7 +818,7 @@ interface IVolume {
imageData?: vtkImageData
metadata: Metadata
origin: Point3
referenceVolumeId?: string
referencedVolumeId?: string
scalarData: Float32Array | Uint8Array
scaling?: {
PET?: {
Expand Down
Loading