FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects

Dask

Merged Eduardo Gonzalez Solares requested to merge dask into master

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
135 # read mosaic file, get delta in microns
136 mosaic_file=get_mosaic_file(this_dir)
137 dx,dy,lx,ly=read_mosaicifile_stpt(this_dir+mosaic_file)
138 delta_x,delta_y=find_delta(dx,dy)
139 # dx0,dy0 are just the coordinates of each image
140 # in columns/rows
141 dx0=np.round((dx-dx.min())/delta_x).astype(int)
142 dy0=np.round((dy-dy.min())/delta_y).astype(int)
143 # get image names and select the first optical slice
144 imgs,img_num,channel,optical_slice=get_img_list(this_dir,mosaic_size=len(dx))
145 optical_slice=optical_slice-optical_slice.min()+1
146 # read image cube
147 img_cube=get_img_cube(\
148 this_dir,imgs,img_num,channel,optical_slice,channel_to_use=channel_to_use,\
149 slice_to_use=optical_slice.min()\
150 )
  • added 1 commit

    Compare with previous version

    By Eduardo Gonzalez Solares on 2019-07-26T11:02:21 (imported from GitLab)

  • merged

    By Eduardo Gonzalez Solares on 2019-07-26T11:03:30 (imported from GitLab)

  • Please register or sign in to reply
    Loading