Skip to content

Commit 39c52b8

Browse files
committed
Rename Extract to Acquire, since we don't actually do any extraction of zip files anymore.
1 parent 55f9450 commit 39c52b8

14 files changed

+27
-27
lines changed

Examples/Python/deep_ssm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222

2323
def Run_Pipeline(args):
2424
######################################################################################
25-
print("\nStep 1. Extract Data")
25+
print("\nStep 1. Acquire Data")
2626
"""
27-
Step 1: EXTRACT DATA
27+
Step 1: ACQUIRE DATA
2828
We define dataset_name which determines which dataset to download from
2929
the portal and the directory to save output from the use case in.
3030
This data is comprised of femur meshes and corresponding hip CT scans.

Examples/Python/ellipsoid.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
import shapeworks as sw
1616

1717
def Run_Pipeline(args):
18-
print("\nStep 1. Extract Data\n")
18+
print("\nStep 1. Acquire Data\n")
1919
"""
20-
Step 1: EXTRACT DATA
20+
Step 1: ACQUIRE DATA
2121
2222
We define dataset_name which determines which dataset to download from
2323
the portal and the directory to save output from the use case in.

Examples/Python/ellipsoid_cut.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
import shapeworks as sw
1414

1515
def Run_Pipeline(args):
16-
print("\nStep 1. Extract Data\n")
16+
print("\nStep 1. Acquire Data\n")
1717
"""
18-
Step 1: EXTRACT DATA
18+
Step 1: ACQUIRE DATA
1919
2020
We define dataset_name which determines which dataset to download from
2121
the portal and the directory to save output from the use case in.

Examples/Python/ellipsoid_fd.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
import shapeworks as sw
1717

1818
def Run_Pipeline(args):
19-
print("\nStep 1. Extract Data\n")
19+
print("\nStep 1. Acquire Data\n")
2020
"""
21-
Step 1: EXTRACT DATA
21+
Step 1: ACQUIRE DATA
2222
2323
We define dataset_name which determines which dataset to download from
2424
the portal and the directory to save output from the use case in.

Examples/Python/ellipsoid_multiple_domain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
import subprocess
1818

1919
def Run_Pipeline(args):
20-
print("\nStep 1. Extract Data\n")
20+
print("\nStep 1. Acquire Data\n")
2121
"""
22-
Step 1: EXTRACT DATA
22+
Step 1: ACQUIRE DATA
2323
2424
We define dataset_name which determines which dataset to download from
2525
the portal and the directory to save output from the use case in.

Examples/Python/ellipsoid_multiple_domain_mesh.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
import numpy as np
1717
import subprocess
1818
def Run_Pipeline(args):
19-
print("\nStep 1. Extract Data\n")
19+
print("\nStep 1. Acquire Data\n")
2020
"""
21-
Step 1: EXTRACT DATA
21+
Step 1: ACQUIRE DATA
2222
2323
We define dataset_name which determines which dataset to download from
2424
the portal and the directory to save output from the use case in.

Examples/Python/femur_cut.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
import shapeworks as sw
1616

1717
def Run_Pipeline(args):
18-
print("\nStep 1. Extract Data\n")
18+
print("\nStep 1. Acquire Data\n")
1919
"""
20-
Step 1: EXTRACT DATA
20+
Step 1: ACQUIRE DATA
2121
We define dataset_name which determines which dataset to download from
2222
the portal and the directory to save output from the use case in.
2323
This data is comprised of femur meshes and corresponding hip CT scans.

Examples/Python/hip_multiple_domain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ def calculate_transforms(shapes, reference_shape):
2121
return transforms
2222

2323
def Run_Pipeline(args):
24-
print("\nStep 1. Extract Data\n")
24+
print("\nStep 1. Acquire Data\n")
2525
"""
26-
Step 1: EXTRACT DATA
26+
Step 1: ACQUIRE DATA
2727
2828
We define dataset_name which determines which dataset to download from
2929
the portal and the directory to save output from the use case in.

Examples/Python/incremental_supershapes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ def Run_Pipeline(args):
4545
initial_model_size = 10
4646
incremental_batch_size = 5
4747

48-
print("\nStep 1. Extract Data")
48+
print("\nStep 1. Acquire Data")
4949
"""
50-
Step 1: EXTRACT DATA
50+
Step 1: ACQUIRE DATA
5151
5252
We define dataset_name which determines which dataset to download from
5353
the portal and the directory to save output from the use case in.

Examples/Python/left_atrium.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
import shapeworks as sw
2222

2323
def Run_Pipeline(args):
24-
print("\nStep 1. Extract Data\n")
24+
print("\nStep 1. Acquire Data\n")
2525
"""
26-
Step 1: EXTRACT DATA
26+
Step 1: ACQUIRE DATA
2727
We define dataset_name which determines which dataset to download from
2828
the portal and the directory to save output from the use case in.
2929
"""

0 commit comments

Comments
 (0)