Océane Patiny

Results 37 issues of Océane Patiny

Make a PR where: - [ ] we export the `TiffIfd` type - [ ] the I for interface are removed

I wanted to answer to #23 and realized that the whole package really lacks documentation. Typically for the `statistics` property, we have no description of any of the variables, and...

The Hamming distance can typically be used to compute the distance between two bit strings very easily, by doing `sum(xor(a,b))`. It counts the number of dissimilar elements between the strings....

Some issues are opened since 2017 and are probably not relevant anymore.

It seems that `paintMaskOnImage` yields to the same results with `blend=true` and `blend=false`. I realized that they are no testcases with `blend = true` in `paintMaskOnImage.test.ts`. Example of a test...

It would be useful to have expose this function, to get an array of "equally spaced" colors. Usecase example: I have an array of masks that I want to paint...

Image stacks are array of images on which different methods can be applied. We want to create a new class `Stack`. The stacks were already implemented in `image-js`. Check how...

This function applies a kernel to an image. The kernel should contain three possible values: 0, 1 and NaN. The pixels in the result are set to 1 iif the...

Implement a function that skeletonizes a mask. [https://homepages.inf.ed.ac.uk/rbf/HIPR2/skeleton.htm](https://homepages.inf.ed.ac.uk/rbf/HIPR2/skeleton.htm) Is there anything similar in `image-js` already? Ref to Matlab equivalent function: [https://nl.mathworks.com/help/images/ref/bwskel.html](https://nl.mathworks.com/help/images/ref/bwskel.html)

The `out` option should be added to the options interfaces and then the `getOutputImage()` function must be used to return the correct output.