Hoogle Search

Within LTS Haskell 24.51 (ghc-9.10.3)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. readImageAuto :: (Manifest r (Pixel cs e), ColorSpace cs i e, MonadIO m) => FilePath -> m (Image r cs e)

    massiv-io Data.Massiv.Array.IO

    Similar to readImage, but will perform all necessary color space conversion and precision adjustment in order to match the result image type. Very useful whenever image format isn't known ahead of time.

    >>> frogCMYK <- readImageAuto "files/frog.jpg" :: IO (Image S (CMYK (SRGB 'NonLinear)) Double)
    
    >>> size frogCMYK
    Sz (200 :. 320)
    

  2. readableAdhoc :: Readable f out => f -> Decode out

    massiv-io Data.Massiv.Array.IO

    Utilize a Readable instance in order to construct an adhoc Decode type

  3. readData :: ToJSON a => a -> Matplotlib

    matplotlib Graphics.Matplotlib

    Load the given data into the python "data" array

  4. readImage :: MplotImage i => i -> Matplotlib

    matplotlib Graphics.Matplotlib

    Load the given image into python "img" variable

  5. readData :: ToJSON a => a -> Matplotlib

    matplotlib Graphics.Matplotlib.Internal

    Load the given data into the python "data" array

  6. readImage :: MplotImage i => i -> Matplotlib

    matplotlib Graphics.Matplotlib.Internal

    Load the given image into python "img" variable

  7. readArray :: FilePath -> IO (Array Scientific)

    matrix-market-attoparsec Data.Matrix.MatrixMarket

    Load a dense matrix (i.e. a matrix or vector in Array format) from file. Uses readArray' internally

  8. readArray' :: MonadThrow m => ByteString -> m (Array Scientific)

    matrix-market-attoparsec Data.Matrix.MatrixMarket

    Deserialize a dense matrix (i.e. a matrix or vector in Array format) from a lazy ByteString. Throws a FileParseError if the input cannot be parsed

  9. readMatrix :: FilePath -> IO (Matrix Scientific)

    matrix-market-attoparsec Data.Matrix.MatrixMarket

    Load a matrix (sparse, i.e. in Coordinate format) from file. Uses readMatrix' internally

  10. readMatrix' :: MonadThrow m => ByteString -> m (Matrix Scientific)

    matrix-market-attoparsec Data.Matrix.MatrixMarket

    Deserialize a matrix (sparse, i.e. in Coordinate format) from a lazy ByteString. Throws a FileParseError if the input cannot be parsed

Page 319 of many | Previous | Next