Atlas-Download-Tools icon indicating copy to clipboard operation
Atlas-Download-Tools copied to clipboard

Custom refspace dimensions

Open jankrepl opened this issue 4 years ago • 2 comments

We currently hardcode the respace to be (in microns). I guess because it is the canonical setup.

  refspace = (                                                                                                                                                                                                 
        ("coronal", (0, 13200),                                                                                                                                                                                                        
        ("transverse", (0, 8000),                                                                                                                                                                                                      
        ("sagittal",  (0, 11400),                                                                                                                                                                                                       
    )                    

The problem is that sometimes parts of images are cut off after synchronization. The cleanest solution is to just allow for dynamic resizing of the refspace. Something like.

  refspace = (                                                                                                                                                                                                 
        ("coronal", (c_max, c_min),                                                                                                                                                                                                        
        ("transverse", (t_min, t_max),                                                                                                                                                                                                      
        ("sagittal",  (s_min, s_max),                                                                                                                                                                                                       
    )                    

jankrepl avatar Aug 17 '21 08:08 jankrepl

See below a list of dataset_id that have the cutoff issue after synchronization (feel free to comment if you find others)

  • 717

jankrepl avatar Sep 30 '21 12:09 jankrepl

There is a duplicate issue #25

jankrepl avatar Oct 07 '21 13:10 jankrepl