Tim Holy
Tim Holy
In [this gist](https://gist.github.com/timholy/84e76182a56abb0da58a635f4d0b0ec0) I have some code for creating 4d images and visualizing them with GLVisualize. (You need master on NRRD for this to work properly, plus 12G of free...
I'm opening this as a placeholder for discussion about volumetric raycasting. My specific task is that I'll have thousands or tens of thousands of little cubical volumes, and inside each:...
Docs
Not required before the end of GSoC, but ideally we'd get this package documented on the JuliaImages site.
The 0-to-1 colorscale does not have meaning for colors like HSV, so supporting arbitrary colorants seems wrong. I noticed this while working on https://github.com/JuliaImages/FluorophoreColors.jl/pull/4. We might not want to merge...
https://github.com/JuliaImages/ImageFiltering.jl/pull/150 reorganized the benchmarks for ImageFiltering into a form that would run on each PR and report results separately from tests. To me this seems more useful than the strategy...
JuliaImages has grown over several years through the efforts of many people; now that Julia is itself stable, I anticipate new waves of growth in the coming years. To help...
This makes it easy to visualize the results of segmentation. After this, we can replace the recommendation ```julia imshow(map(i->segment_mean(segments,i), labels_map(segments))) ``` in the [documentation](https://juliaimages.org/latest/pkgs/segmentation) with ```julia imshow(IndirectArray(segments, segment_mean(segments))) ``` which...
This has one breaking change: while the docs advertise that "All the segmentation algorithms (except Fuzzy C-means) return a struct SegmentedImage," that's not been true for `kmeans`. This changes the...
Either here or at JuliaImages, it would be great to document HOG (there have been many requests).
CUFFT
I'm a newbie when it comes to CUDA, but a former member of my lab wrote a MEX file that uses CUDA to compute FFTs. I'm now trying to port...