I downloaded and installed the toolbox that I found on this site that is recommended from caltech for manipulating a .seq file. I am trying to open a .seq file using the functions that are in the toolbox.
Reading the instructions from here
for how to execute a specific mode of the function I see that sr = seqIo( fName, 'reader', [cache] )
is to Create interface sr for reading seq files. When i execute it in matlab with the format sr = seqIo( 'V001.seq', 'r', 2048 );
it extracts an error ->
Error using seqReaderPlugin>open (line 111) Cannot find MATLAB's source image reader
First of all I am not sure what to put in the [case] field as an argument and second I would very appreciate if someone gave a simple script to read every image of the sequence independently for later processing. I do not know if some else has the same problem.
Just to show you that nothing from the toolbox is working I call the function info = seqIo( 'V001.seq', 'getInfo' )
and it still has the same results also when using other .seq files.