Dylan Muir
Dylan Muir
Hi @alexlenail, thanks for your feedback! I'm using the AlexNet API, so D3 is not used — how would I then gain access to the blob? I tried the code...
`imfinfo` is fast because it uses the undocumented Matlab `mex` file `matlab.io.internal.imagesci.tifftagsread`. The calling syntax appears to be: ```matlab function vsInfoStructure = ...tifftagsread(strFilename, nBytesOffset, nIFDsToSkip, nNumIFDsToRead); ``` `tifftagsread` is 10x...
Suggestion: to write an accelerated `mex` version that reads only necessary tags from the TIF file. Hassles: - We can't know how many IFDs are in the file in advance....
You're right, it's not suggested. I found it to empirically work better for my problems, which is why it's in the code base. I had intended to use an option...
Hi @dannyhmg, thanks for your comments! So for concatenation there is https://github.com/DylanMuir/TensorStack which should work out of the box for what you want. Slicing is much harder, but I had...
Ah, I was thinking of the de-interleaving in `TIFFSTack`. So there's no existing functionality to do this. I would suggest making a small wrapper class that does slicing on a...
Great! I’m happy about that. You’re welcome to use TensorStack in that way. I’ll add the same license as TIFFStack.
Hi @osoyer This is difficult, because it requires touching the entire stack. If you want the stack as a true Matlab `double` tensor, then you need to load the entire...
@ugurcancakal in Marco's original case, how can he identify the hardware neuron IDs of the output neurons? Can he use the mapped graph, for example?
Hi @stevenabreu7 , it occurred precisely when the neuron population contains 1 neuron. In other cases `v_threshold` was a vector as expected. I did want to check with you about...