ndarray-vision icon indicating copy to clipboard operation
ndarray-vision copied to clipboard

Computer vision library built on top of ndarray

Results 11 ndarray-vision issues
Sort by recently updated
recently updated
newest added

I wanted to use this library for a CNN. After a quick look at the source, it doesn't look like you use the the [FFT algorithm for fast convolution](https://en.m.wikipedia.org/wiki/Convolution_theorem). It...

Resolves #54. A feature flag still needs to be added, but I wanted to share what I have so far to make sure I am on the right track. I...

The image processing threshold methods are defined as traits for the `ArrayBase` and `Image` types that use the Otsu and Mean algorithms for calculating a threshold value and immediately applying...

I was starting to play around with this crate and others in the "ndarray family" to become more familiar with using Rust for CV and ML applications. In my adventure,...

Hi , I copy & paste the **Example code** provided in [here](https://github.com/rust-cv/ndarray-vision/blob/master/examples/basic.rs) and then did `cargo run` . Found Following Error `error: linking with link.exe failed: exit code: 1120` MY...

Started work on it, reference for implementation https://gurus.pyimagesearch.com/lesson-sample-histogram-of-oriented-gradients-and-car-logo-recognition/

Currently just using Ix3 as image dimensions to easily allow other colour channels. Usability may be improved by making it easy to drop the extra dimension when it's just a...

enhancement

Ideas for algorithms to add could come from Matlab/Scikit-image/ImageJ threshold algorithms. To start we could add some a couple of standard ones - I've been working on mean and Otsu's...

With all the permutations of reflection should just a simple X, Y reflection just be supported for more complicated ones like reflecting along the line y=-x? Answer this question and...

enhancement

Adaptive Histogram Equalisation (AHE) and as a stretch contrast-limited adaptive histogram equalisation (CLAHE)

enhancement