Alan Race

Results 20 issues of Alan Race

Label currently ignores the max size when adding via `add_sized`. This only seems to be taken into account when `wrap` is set to `true`. I would ideally like to set...

bug

Added a function to predict the per-class probability of each class for each observation. ```rust let probabilities = forest.predict_probs(&data).unwrap(); ``` `probabilities` is a _KxC_ matrix, where _K_ is the number...

Added the ability to set the colour transform applied (resolves https://github.com/image-rs/jpeg-decoder/issues/238). To do this, I had added a new `enum` which captures the possible options, including a `Default` option which...

To solve https://github.com/image-rs/image-tiff/issues/168 I would like to clone the `UnsupportedFeature` error and add this to a `TiffError` to pass back to the caller.

Decompressing JPEG encoded .tiff files causes incorrect colour conversion (e.g. https://github.com/image-rs/image-tiff/issues/124). This has been temporarily resolved by modifying the JPEG header before being passed to `jpeg-decoder` (see https://github.com/image-rs/image-tiff/pull/148). This is...

I would like to use this crate without further dependencies (I only need the union functionality really). I can do this currently if I modify the first line of `/lib/src/boolean/mod.rs`...

This pull request includes better handling of jpeg compressed tiff files. The `unwrap` is removed, and instead an error (`TiffUnsupportedError::UnsupportedJpegFeature`) created and propogated back. This also removes the hacky `add_app14segment`...

It seems like all of the encoding code works for strip-based tiffs and there is currently no means of writing tile-based images.

help wanted

The use of `#[default = "NULL"] ` in the following example, seems to be ignored. This works fine for individual functions, but not when the function is part of an...

bug

This fixes #222. Additionally, I was implementing a custom filter and required access to the h5err macro, hence the changes to the macro exporting.