This repository has been archived by the owner on Feb 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix & refactor CrossVal * update CI * update manifest * refactoring
- Loading branch information
Showing
16 changed files
with
212 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env bash | ||
|
||
rm -r -f results && mkdir results | ||
python experiments_ovary_centres/run_create_annotation.py | ||
python experiments_ovary_centres/run_center_candidate_training.py | ||
python experiments_ovary_centres/run_center_prediction.py | ||
python experiments_ovary_centres/run_center_clustering.py | ||
python experiments_ovary_centres/run_center_evaluation.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/usr/bin/env bash | ||
|
||
pip install --user git+https://github.com/Borda/morph-snakes.git | ||
rm -r -f results && mkdir results | ||
python experiments_ovary_detect/run_RG2Sp_estim_shape-models.py | ||
python experiments_ovary_detect/run_ovary_egg-segmentation.py \ | ||
-m ellipse_moments ellipse_ransac_mmt ellipse_ransac_crit GC_pixels-large GC_pixels-shape GC_slic-small GC_slic-shape rg2sp_greedy-single rg2sp_GC-mixture watershed_morph | ||
python experiments_ovary_detect/run_ovary_segm_evaluation.py --visual | ||
python experiments_ovary_detect/run_export_user-annot-segm.py | ||
python experiments_ovary_detect/run_cut_segmented_objects.py | ||
python experiments_ovary_detect/run_ellipse_annot_match.py | ||
python experiments_ovary_detect/run_ellipse_cut_scale.py | ||
python experiments_ovary_detect/run_egg_swap_orientation.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/usr/bin/env bash | ||
|
||
rm -r -f results && mkdir results | ||
python experiments_segmentation/run_compute_stat_annot_segm.py \ | ||
-a "data_images/drosophila_ovary_slice/annot_struct/*.png" \ | ||
-s "data_images/drosophila_ovary_slice/segm/*.png" \ | ||
--visual | ||
python experiments_segmentation/run_segm_slic_model_graphcut.py \ | ||
-i "data_images/drosophila_disc/image/img_[5,6].jpg" \ | ||
-cfg ./experiments_segmentation/sample_config.json \ | ||
--visual | ||
python experiments_segmentation/run_segm_slic_classif_graphcut.py \ | ||
-l data_images/drosophila_ovary_slice/list_imgs-annot-struct_short.csv \ | ||
-i "data_images/drosophila_ovary_slice/image/insitu41*.jpg" \ | ||
-cfg ./experiments_segmentation/sample_config.json \ | ||
--visual |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/usr/bin/env bash | ||
|
||
python handling_annotations/run_image_color_quantization.py \ | ||
-imgs "./data_images/drosophila_ovary_slice/segm_rgb/*.png" | ||
python handling_annotations/run_image_color_quantization.py \ | ||
-imgs "./data_images/drosophila_ovary_slice/segm_rgb/*.png" \ | ||
-m position | ||
python handling_annotations/run_image_convert_label_color.py \ | ||
-imgs "./data_images/drosophila_ovary_slice/segm/*.png" \ | ||
-out ./data_images/drosophila_ovary_slice/segm_rgb | ||
python handling_annotations/run_image_convert_label_color.py \ | ||
-imgs "./data_images/drosophila_ovary_slice/segm_rgb/*.png" \ | ||
-out ./data_images/drosophila_ovary_slice/segm | ||
python handling_annotations/run_overlap_images_segms.py \ | ||
-imgs "./data_images/drosophila_ovary_slice/image/*.jpg" \ | ||
-segs ./data_images/drosophila_ovary_slice/segm \ | ||
-out ./results/overlap_ovary_segment | ||
python handling_annotations/run_segm_annot_inpaint.py \ | ||
-imgs "./data_images/drosophila_ovary_slice/segm/*.png" \ | ||
--label 0 | ||
python handling_annotations/run_segm_annot_relabel.py \ | ||
-imgs "./data_images/drosophila_ovary_slice/center_levels/*.png" \ | ||
-out ./results/relabel_center_levels |
Oops, something went wrong.