hip-1.5.0.0: src/Graphics/Image/Processing/Geometric.hs
{-# LANGUAGE BangPatterns #-}
{-# LANGUAGE CPP #-}
{-# LANGUAGE ViewPatterns #-}
-- |
-- Module : Graphics.Image.Processing.Geometric
-- Copyright : (c) Alexey Kuleshevich 2016
-- License : BSD3
-- Maintainer : Alexey Kuleshevich <lehins@yandex.ru>
-- Stability : experimental
-- Portability : non-portable
--
module Graphics.Image.Processing.Geometric (
-- ** Sampling
downsampleRows, downsampleCols, downsample,
upsampleRows, upsampleCols, upsample,
-- ** Concatenation
leftToRight, topToBottom,
-- ** Canvas
translate, canvasSize, crop, superimpose,
-- ** Flipping
flipV, flipH,
-- ** Rotation
rotate90, rotate180, rotate270, rotate,
-- ** Scaling
resize, scale
) where
#if MIN_VERSION_base(4,8,0)
import Prelude hiding (traverse)
#endif
import Graphics.Image.Interface
import Graphics.Image.Processing.Interpolation
import qualified Data.Vector as V
-- | Downsample an image. Drop all rows and colums that satisfy the
-- predicates. For example, in order to discard every 5th row and keep every
-- even indexed column:
--
-- >>> frog <- readImageRGB RPU "images/frog.jpg"
-- >>> displayImage $ downsample ((0 ==) . (`mod` 5)) odd frog
--
-- <<images/frog.jpg>> <<images/frog_downsampled.jpg>>
--
downsample :: Array arr cs e =>
(Int -> Bool) -- ^ Rows predicate
-> (Int -> Bool) -- ^ Columns predicate
-> Image arr cs e -- ^ Source image
-> Image arr cs e
downsample mPred nPred !img =
traverse img (const (V.length rowsIx, V.length colsIx)) getNewPx where
!(m, n) = dims img
!rowsIx = V.filter (not . mPred) $ V.enumFromN 0 m
!colsIx = V.filter (not . nPred) $ V.enumFromN 0 n
getNewPx getPx !(i, j) = getPx (V.unsafeIndex rowsIx i, V.unsafeIndex colsIx j)
{-# INLINE downsample #-}
-- | Upsample an image by inserting rows and columns with zero valued pixels
-- into an image. Supplied functions specify how many rows/columns shoud be
-- inserted @(before, after)@ a particular row/column. Returning a negative
-- value in a tuple will result in an error. E.g. insert 2 columns before and 4
-- columns after every 10th column, while leaving rows count unchanged:
--
-- >>> frog <- readImageRGB RPU "images/frog.jpg"
-- >>> displayImage $ upsample (const (0, 0)) (\ k -> if k `mod` 10 == 0 then (2, 4) else (0, 0)) frog
--
-- <<images/frog.jpg>> <<images/frog_upsampled.jpg>>
--
upsample :: Array arr cs e =>
(Int -> (Int, Int))
-> (Int -> (Int, Int))
-> Image arr cs e
-> Image arr cs e
upsample mAdd nAdd !img = traverse img (const (newM, newN)) getNewPx where
!(m, n) = dims img
validate !p@(pre, post)
| pre < 0 || post < 0 =
error $ "upsample: negative values are not accepted: " ++ show p
| otherwise = p
!rowsIx = V.unfoldr (spread (V.map (validate . mAdd) $ V.enumFromN 0 m)) (0, Nothing, Nothing)
!colsIx = V.unfoldr (spread (V.map (validate . nAdd) $ V.enumFromN 0 n)) (0, Nothing, Nothing)
!newM = V.length rowsIx
!newN = V.length colsIx
spread !v !params =
case params of
(k, Nothing, Nothing) | k == V.length v -> Nothing
(k, Nothing, Nothing) ->
let (pre, post) = v V.! k in spread v (k, Just pre, Just post)
(k, Just 0, my) -> Just (Just k, (k, Nothing, my))
(k, Just x, my) -> Just (Nothing, (k, Just (x-1), my))
(k, Nothing, Just 0) -> spread v (k+1, Nothing, Nothing)
(k, Nothing, Just y) -> Just (Nothing, (k, Nothing, Just (y-1)))
{-# INLINE spread #-}
getNewPx getPx !(i, j) =
case (V.unsafeIndex rowsIx i, V.unsafeIndex colsIx j) of
(Just i', Just j') -> getPx (i', j')
_ -> 0
{-# INLINE getNewPx #-}
{-# INLINE upsample #-}
-- | Downsample an image by discarding every odd row.
downsampleRows :: Array arr cs e => Image arr cs e -> Image arr cs e
downsampleRows = downsample odd (const False)
{-# INLINE downsampleRows #-}
-- | Downsample an image by discarding every odd column.
downsampleCols :: Array arr cs e => Image arr cs e -> Image arr cs e
downsampleCols = downsample (const False) odd
{-# INLINE downsampleCols #-}
-- | Upsample an image by inserting a row of back pixels after each row of a
-- source image.
upsampleRows :: Array arr cs e => Image arr cs e -> Image arr cs e
upsampleRows = upsample (const (0, 1)) (const (0, 0))-- upsampleF (2, 1)
{-# INLINE upsampleRows #-}
-- | Upsample an image by inserting a column of back pixels after each column of a
-- source image.
upsampleCols :: Array arr cs e => Image arr cs e -> Image arr cs e
upsampleCols = upsample (const (0, 0)) (const (0, 1))-- upsampleF (2, 1)
{-# INLINE upsampleCols #-}
-- | Concatenate two images together into one. Both input images must have the
-- same number of rows.
leftToRight :: Array arr cs e => Image arr cs e -> Image arr cs e -> Image arr cs e
leftToRight !img1@(dims -> (_, n1)) !img2 = traverse2 img1 img2 newDims newPx where
newDims !(m1, _) !(m2, n2)
| m1 == m2 = (m1, n1 + n2)
| otherwise = error ("leftToRight: Images must agree in numer of rows, but received: "
++ show img1 ++ " and " ++ show img2)
{-# INLINE newDims #-}
newPx !getPx1 !getPx2 !(i, j) = if j < n1 then getPx1 (i, j) else getPx2 (i, j-n1)
{-# INLINE newPx #-}
{-# INLINE leftToRight #-}
-- | Concatenate two images together into one. Both input images must have the
-- same number of columns.
topToBottom :: Array arr cs e => Image arr cs e -> Image arr cs e -> Image arr cs e
topToBottom !img1@(dims -> (m1, _)) !img2 = traverse2 img1 img2 newDims newPx where
newDims !(_, n1) !(m2, n2)
| n1 == n2 = (m1 + m2, n1)
| otherwise = error ("topToBottom: Images must agree in numer of columns, but received: "
++ show img1 ++ " and " ++ show img2)
{-# INLINE newDims #-}
newPx !getPx1 !getPx2 !(i, j) = if i < m1 then getPx1 (i, j) else getPx2 (i-m1, j)
{-# INLINE newPx #-}
{-# INLINE topToBottom #-}
-- | Shift an image towards its bottom right corner by @(delatM, deltaN)@ rows and
-- columns, while specifying a border resolution strategy.
--
-- >>> frog <- readImageRGB VU "images/frog.jpg"
-- >>> writeImage "images/frog_translate_wrap.jpg" $ translate Wrap (50, 100) frog
-- >>> writeImage "images/frog_translate_edge.jpg" $ translate Edge (50, 100) frog
--
-- <<images/frog.jpg>> <<images/frog_translate_wrap.jpg>> <<images/frog_translate_edge.jpg>>
--
-- @since 1.2.0.0
--
translate
:: Array arr cs e
=> Border (Pixel cs e) -- ^ Border resolution strategy
-> (Int, Int) -- ^ Number of rows and columns image will be shifted by.
-> Image arr cs e -> Image arr cs e
translate atBorder !(dm, dn) !img = traverse img id newPx
where
newPx !getPx !(i, j) =
handleBorderIndex atBorder (dims img) getPx (i - dm, j - dn)
{-# INLINE newPx #-}
{-# INLINE translate #-}
-- | Change the size of an image. Pixel values and positions will not change,
-- except the ones outside the border, which are handled according to supplied
-- resolution strategy.
--
-- <<images/logo_40.png>>
--
-- For example, it can be used to make a tile from the image above, or simply
-- scale the canvas and place it in a middle:
--
-- >>> logo <- readImageRGBA VU "images/logo_40.png"
-- >>> let incBy (fm, fn) = (rows logo * fm, cols logo * fn)
-- >>> writeImage "images/logo_tile.png" $ canvasSize Wrap (incBy (6, 10)) logo
-- >>> writeImage "images/logo_center.png" $ translate (Fill 0) (incBy (2, 3)) $ canvasSize (Fill 0) (incBy (5, 7)) logo
--
-- <<images/logo_tile.png>> <<images/logo_center.png>>
--
-- @since 1.2.1.0
--
canvasSize
:: Array arr cs e
=> Border (Pixel cs e) -- ^ Border resolution strategy
-> (Int, Int) -- ^ New dimensions of the image
-> Image arr cs e -- ^ Source image
-> Image arr cs e
canvasSize atBorder !ds !img = traverse img (const ds) newPx
where
newPx !getPx !ix = handleBorderIndex atBorder (dims img) getPx ix
{-# INLINE newPx #-}
{-# INLINE canvasSize #-}
-- | Crop an image, i.e. retrieves a sub-image image with @m@ rows and @n@
-- columns. Make sure @(i + m, j + n)@ is not greater than dimensions of a
-- source image, otherwise it will result in an error.
crop :: Array arr cs e =>
(Int, Int) -- ^ @(i, j)@ starting index from within a source image.
-> (Int, Int) -- ^ @(m, n)@ dimensions of a new image.
-> Image arr cs e -- ^ Source image.
-> Image arr cs e
crop !(i0, j0) !sz@(m', n') !img
| i0 < 0 || j0 < 0 || i0 >= m || j0 >= n =
error $
"Graphics.Image.Processing.crop: Starting index: " ++
show (i0, j0) ++
" is greater than dimensions of the source image: " ++ show img
| i0 + m' > m || j0 + n' > n =
error $
"Graphics.Image.Processing.crop: Result image dimensions: " ++
show (m', n') ++
" plus the offset: " ++
show (i0, j0) ++ " are bigger than the source image: " ++ show img
| otherwise = backpermute sz (\ !(i, j) -> (i + i0, j + j0)) img
where !(m, n) = dims img
{-# INLINE crop #-}
-- | Place one image on top of a source image, starting at a particular location within
-- a source image.
superimpose :: Array arr cs e =>
(Int, Int) -- ^ @(i, j)@ starting index from within a source image.
-> Image arr cs e -- ^ Image to be positioned above the source image.
-> Image arr cs e -- ^ Source image.
-> Image arr cs e
superimpose !(i0, j0) !imgA !imgB = traverse2 imgB imgA const newPx where
!(m, n) = dims imgA
newPx getPxB getPxA (i, j) = let !(i', j') = (i - i0, j - j0) in
if i' >= 0 && j' >= 0 && i' < m && j' < n then getPxA (i', j') else getPxB (i, j)
{-# INLINE superimpose #-}
flipUsing :: Array arr cs e =>
((Int, Int) -> (Int, Int) -> (Int, Int)) -> Image arr cs e -> Image arr cs e
flipUsing getNewIndex !img@(dims -> sz) = backpermute sz (getNewIndex sz) img
{-# INLINE flipUsing #-}
-- | Flip an image vertically.
--
-- >>> frog <- readImageRGB VU "images/frog.jpg"
-- >>> writeImage "images/frog_flipV.jpg" $ flipV frog
--
-- <<images/frog.jpg>> <<images/frog_flipV.jpg>>
--
flipV :: Array arr cs e => Image arr cs e -> Image arr cs e
flipV = flipUsing (\ (m, _) !(i, j) -> (m - 1 - i, j))
{-# INLINE flipV #-}
-- | Flip an image horizontally.
--
-- >>> frog <- readImageRGB VU "images/frog.jpg"
-- >>> writeImage "images/frog_flipH.jpg" $ flipH frog
--
-- <<images/frog.jpg>> <<images/frog_flipH.jpg>>
--
flipH :: Array arr cs e => Image arr cs e -> Image arr cs e
flipH = flipUsing (\ (_, n) !(i, j) -> (i, n - 1 - j))
{-# INLINE flipH #-}
-- | Rotate an image clockwise by 90°.
--
-- >>> frog <- readImageRGB VU "images/frog.jpg"
-- >>> writeImage "images/frog_rotate90.jpg" $ rotate90 frog
--
-- <<images/frog.jpg>> <<images/frog_rotate90.jpg>>
--
rotate90 :: Array arr cs e => Image arr cs e -> Image arr cs e
rotate90 = transpose . flipV
{-# INLINE rotate90 #-}
-- | Rotate an image by 180°.
--
-- >>> frog <- readImageRGB VU "images/frog.jpg"
-- >>> writeImage "images/frog_rotate180.jpg" $ rotate180 frog
--
-- <<images/frog.jpg>> <<images/frog_rotate180.jpg>>
--
rotate180 :: Array arr cs e => Image arr cs e -> Image arr cs e
rotate180 = flipUsing (\ !(m, n) !(i, j) -> (m - 1 - i, n - 1 - j))
{-# INLINE rotate180 #-}
-- | Rotate an image clockwise by 270°.
--
-- >>> frog <- readImageRGB VU "images/frog.jpg"
-- >>> writeImage "images/frog_rotate270.jpg" $ rotate270 frog
--
-- <<images/frog.jpg>> <<images/frog_rotate270.jpg>>
--
rotate270 :: Array arr cs e => Image arr cs e -> Image arr cs e
rotate270 = transpose . flipH
{-# INLINE rotate270 #-}
-- | Rotate an image clockwise by an angle Θ in radians.
--
-- >>> frog <- readImageRGBA VU "images/frog.jpg"
-- >>> writeImage "images/frog_rotate330.png" $ rotate Bilinear (Fill 0) (11*pi/6) frog
--
-- <<images/frog.jpg>> <<images/frog_rotate330.png>>
--
rotate :: (Array arr cs e, Interpolation method) =>
method -- ^ Interpolation method to be used
-> Border (Pixel cs e) -- ^ Border handling strategy
-> Double -- ^ Angle in radians
-> Image arr cs e -- ^ Source image
-> Image arr cs e -- ^ Rotated image
rotate !method border !theta' !img = traverse img getNewDims getNewPx where
!theta = angle0to2pi (-theta') -- invert angle direction and put it into [0, 2*pi) range
!sz@(m, n) = dims img
!(mD, nD) = (fromIntegral m, fromIntegral n)
!(sinTheta, cosTheta) = (sin' theta, cos' theta)
!(sinThetaAbs, cosThetaAbs) = (abs sinTheta, abs cosTheta)
!(mD', nD') = (mD * cosThetaAbs + nD * sinThetaAbs, nD * cosThetaAbs + mD * sinThetaAbs)
!(iDelta, jDelta) =
case (sinTheta >= 0, cosTheta >= 0) of
(True, True ) -> (nD * sinTheta, 0) -- I quadrant
(True, False) -> (mD', -nD * cosTheta) -- II quadrant
(False, False) -> (-mD * cosTheta, nD') -- III quadrant
(False, True ) -> (0, -mD * sinTheta) -- IV quadrant
getNewDims _ = (ceiling mD', ceiling nD')
getNewPx getPx (i, j) = interpolate method border sz getPx (i', j') where
(iD, jD) = (fromIntegral i - iDelta + 0.5, fromIntegral j - jDelta + 0.5)
i' = iD * cosTheta + jD * sinTheta - 0.5
j' = jD * cosTheta - iD * sinTheta - 0.5
-- | Resize an image using an interpolation method.
--
-- >>> frog <- readImageRGB VU "images/frog.jpg"
-- >>> writeImage "images/frog_resize.jpg" $ resize Bilinear Edge (100, 640) frog
--
-- <<images/frog_resize.jpg>>
--
resize :: (Interpolation method, Array arr cs e) =>
method -- ^ Interpolation method to be used during scaling.
-> Border (Pixel cs e) -- ^ Border handling strategy
-> (Int, Int) -- ^ Dimensions of a result image.
-> Image arr cs e -- ^ Source image.
-> Image arr cs e -- ^ Result image.
resize !method border !sz'@(m', n') !img = traverse img (const sz') getNewPx where
!sz@(m, n) = dims img
!(fM, fN) = (fromIntegral m' / fromIntegral m, fromIntegral n' / fromIntegral n)
getNewPx !getPx !(i, j) =
interpolate method border sz getPx ((fromIntegral i + 0.5) / fM - 0.5, (fromIntegral j + 0.5) / fN - 0.5)
{-# INLINE getNewPx #-}
{-# INLINE resize #-}
-- | Scale an image. Same as resize, except scaling factors are supplied
-- instead of new dimensions.
--
-- @ scale 'Bilinear' 'Edge' (0.5, 2) frog == resize 'Bilinear' 'Edge' (100, 640) frog @
--
scale :: (Interpolation method, Array arr cs e) =>
method -- ^ Interpolation method to be used during scaling.
-> Border (Pixel cs e) -- ^ Border handling strategy
-> (Double, Double) -- ^ Positive scaling factors.
-> Image arr cs e -- ^ Source image.
-> Image arr cs e
scale !method border !(fM, fN) !img@(dims -> (m, n)) =
if fM <= 0 || fN <= 0
then error "scale: scaling factor must be greater than 0."
else resize method border (round (fM * fromIntegral m), round (fN * fromIntegral n)) img
{-# INLINE scale #-}
-- | Put an angle into @[0, 2*pi)@ range.
angle0to2pi :: Double -> Double
angle0to2pi !f = f - 2 * pi * floor' (f / (2 * pi))
where floor' :: Double -> Double
floor' !x = fromIntegral (floor x :: Int)
{-# INLINE floor' #-}
{-# INLINE angle0to2pi #-}
-- | Make sure @sin' pi == 0@ instead of @sin pi == 1.2246467991473532e-16@
sin' :: Double -> Double
sin' a = if abs sinA <= _0 then 0 else sinA
where !_0 = 10 * sin pi
!sinA = sin a
{-# INLINE sin' #-}
-- | Make sure @cos' (pi/2) == 0@ instead of @cos (pi/2) == 6.123233995736766e-17@
-- and @cos' (3*pi/2) == 0@ instead of @cos (3*pi/2) == -1.8369701987210297e-16@
cos' :: Double -> Double
cos' a = sin' (a + pi/2)
{-# INLINE cos' #-}