https://github.com/QBioLab/FindYourCell.jl
Raw File
Tip revision: c2b890be706c3070f0aed86bd2d9426131fe2fa5 authored by H.F on 21 April 2021, 17:50:09 UTC
partial watershed
Tip revision: c2b890b
README.md
# FindYourCell.jl
Cell Segementation and Tracking


## Data Structure
cell_info=[x, y, threshold, cell_size, cell_intensity]

## Compressed tiff
http://www.graphicsmagick.org/api/types.html#compressiontype
http://www.graphicsmagick.org/wand/magick_wand.html#magicksetimagecompression
https://github.com/ImageMagick/ImageMagick/blob/2747ccfc1044fc3da6d32ff1ebbca5e926fcf602/MagickCore/compress.h
https://github.com/ImageMagick/ImageMagick/blob/2747ccfc1044fc3da6d32ff1ebbca5e926fcf602/Magick%2B%2B/lib/Magick%2B%2B/Include.h
Why enum number are wrong?

```julia
# hack ImageMagick
function writeimage(wand::MagickWand, filename::AbstractString)
    setimagecompression(wand, 13) # lzw compression
    status = ccall((:MagickWriteImages, libwand), Cint, (Ptr{Cvoid}, Ptr{UInt8}, Cint), wand, filename, true)
    status == 0 && error(wand)
    nothing
end
```
back to top