You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TCLAP::ValueArg <std::string> outArg("o","out","Output density map",true,"","output image",cmd);
24
24
25
25
//Try to parse
26
26
try
@@ -106,12 +106,14 @@ int main(int argc, char **argv)
106
106
for (int l = 1; l < maxStep; l++)
107
107
{
108
108
//We enter this loop only if maxStep >=2.
109
-
//In that case, we create artificial index points, to try to modify all and only all the voxels through which the streamline passes between point and pointNext
109
+
//In that case, we create artificial index points,
110
+
// to try to modify all and only all the voxels through which the streamline passes between point and pointNext
110
111
//We repeat maxStep - 1 times and not maxStep times, because otherwise, index = indexNext, and we would increment indexNext twice
outImage->SetPixel(indexTemp, outImage->GetPixel(indexTemp) + 1.0); //increment the number of streamlines passing through the voxel with the index indexTemp
115
+
//increment the number of streamlines passing through the voxel with the index indexTemp
0 commit comments