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

load all_baseline before subsetting #11

Merged
merged 3 commits into from
Jul 25, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
colony = "medium"

# load the tracking CSV for medium from FMS
df = global_dataset_filtering.load_dataset_with_features(colony)
df = global_dataset_filtering.load_dataset_with_features()
df = df[df["colony"] == colony]
df_fmb = figure_helper.assemble_formation_middle_breakdown_dataframe(df)
# load the images for each timepoint
# %%
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
# show segmentations as sum projections of contours to emphasize 3D ness
use_cv_contours_for_3d = False

df = load_dataset_with_features(colony)
df = load_dataset_with_features()
df = df[df.colony == colony]
df["centroid_y_inv"] = 3120 - df["centroid_y"].values # seg.shape[1]-cy
df["centroid_z_inv"] = 109 - df["centroid_z"].values # seg.shape[0]-cz
df["centroid_z_inv_adjust"] = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
# show segmentations as sum projections of contours to emphasize 3D ness
use_cv_contours_for_3d = False

df = load_dataset_with_features(name)
df = load_dataset_with_features()
df = df[df.colony == name]

# %%
# find the label number for the chosen track
Expand Down