Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
add future imports for atlas_pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Johnson committed Apr 9, 2019
1 parent 3ba58f0 commit 536e623
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 0 deletions.
3 changes: 3 additions & 0 deletions lucid/scratch/atlas_pipeline/grid.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
"""
Internal pipeline functions that takes in a layout and produces grid cells, organized into tiles
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import math
import numpy as np
Expand Down
7 changes: 7 additions & 0 deletions lucid/scratch/atlas_pipeline/pipeline.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
"""
Take user input data and run it through the grid and tile rendering pipeline
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

import json
import numpy as np
import lucid.scratch.atlas_pipeline.render_tile as render_tile
Expand Down
4 changes: 4 additions & 0 deletions lucid/scratch/atlas_pipeline/render_tile.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
"""
Controller that runs the user defined render function on each cell in a tile
"""
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function

from PIL import Image
import math

Expand Down

0 comments on commit 536e623

Please sign in to comment.