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

Rename and update example script, add slides #42

Merged
merged 3 commits into from
Dec 4, 2023
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
Binary file added presentations/faim-wako-searchfirst_overview.pdf
Binary file not shown.
3 changes: 3 additions & 0 deletions presentations/faim-wako-searchfirst_overview.pdf.license
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
SPDX-FileCopyrightText: 2023 Friedrich Miescher Institute for Biomedical Research (FMI), Basel (Switzerland)

SPDX-License-Identifier: MIT
4 changes: 2 additions & 2 deletions scripts/simple_segmentation.py → scripts/searchfirst.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# SPDX-License-Identifier: MIT

"""SearchFirst script to run a simple segmentation."""
import typer as typer
from faim_wako_searchfirst.segment import run
import typer
from faim_wako_searchfirst.main import run


def main(folder_path: str):
Expand Down
1 change: 0 additions & 1 deletion src/faim_wako_searchfirst/sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def dense_grid(
block_size=(binning_factor, binning_factor),
func=np.max,
)
print(downscaled.shape)
with open(output_path, "w", newline="") as csv_file:
c = csv.writer(csv_file)
count = 0
Expand Down