X-Git-Url: https://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=src%2FMain.hs;h=b8edf9eb2ad1b6d3e88f4641176aaf291aab6912;hb=2a90a63d5fbc8fb57a97e97054e139f5284bf7b0;hp=a2d6b1ffb2411eb37ca02c1a2fc0fb719236c711;hpb=ec2c118022bc46a191ebc323f6be17d4f017fcfb;p=spline3.git diff --git a/src/Main.hs b/src/Main.hs index a2d6b1f..b8edf9e 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -1,55 +1,21 @@ module Main where ---import Cube ---import Face ---import Grid ---import Misc (flatten) ---import Point ---import RealFunction ---import Tetrahedron ---import ThreeDimensional +import Data.Array.Repa ( + DIM3, + Z(..), + (:.)(..), + ) +import Values +import Grid(make_grid, zoom) - ---find_point_value :: RealFunction Point ---find_point_value p = poly p --- where --- g0 = make_grid 1 trilinear --- the_cubes = flatten (cubes g0) --- good_cubes = filter ((flip contains_point) p) the_cubes --- target_cube = head good_cubes --- good_tets = filter ((flip contains_point) p) (tetrahedrons target_cube) --- target_tetrahedron = head good_tets --- poly = polynomial target_tetrahedron +mri_shape :: DIM3 +mri_shape = (Z :. 256 :. 256 :. 109) main :: IO () main = do - putStrLn "Hello, World." - -- print $ find_point_value (0,0,0) - -- print $ find_point_value (1,0,0) - -- print $ find_point_value (2,0,0) - -- print $ find_point_value (0,1,0) - -- print $ find_point_value (1,1,0) - -- print $ find_point_value (2,1,0) - -- print $ find_point_value (0,2,0) - -- print $ find_point_value (1,2,0) - -- print $ find_point_value (2,2,0) - -- print $ find_point_value (0,0,1) - -- print $ find_point_value (1,0,1) - -- print $ find_point_value (2,0,1) - -- print $ find_point_value (0,1,1) - -- print $ find_point_value (1,1,1) - -- print $ find_point_value (2,1,1) - -- print $ find_point_value (0,2,1) - -- print $ find_point_value (1,2,1) - -- print $ find_point_value (2,2,1) - -- print $ find_point_value (0,0,2) - -- print $ find_point_value (1,0,2) - -- print $ find_point_value (2,0,2) - -- print $ find_point_value (0,1,2) - -- print $ find_point_value (1,1,2) - -- print $ find_point_value (2,1,2) - -- print $ find_point_value (0,2,2) - -- print $ find_point_value (1,2,2) - -- print $ find_point_value (2,2,2) + mridata <- read_values_3d mri_shape "./data/mridata.txt" + let g = make_grid 1 mridata + let output = zoom g 1 + write_values_1d output "output.txt"