<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"> P {margin-top:0;margin-bottom:0;} </style>
</head>
<body dir="ltr">
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
grabbed frames from a standard youtube color video via ffmpeg<br>
used something like $    ./imageSeriesToVolume -sz 1.0 -o test.vtk -i input*.jpeg</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
loaded test.vtk in paraview 5.0.1 and also paraview 5.4.1<br>
on information tab i see:   scalars  unsigned char [33,239]  <br>
<br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
"Map Scalars"  on or off I get no RGB colored voxels, of course, because there is only one datum of type unsigned char.<br>
<br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
Where are the other two scalars?!?  <br>
<br>
<span style="color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif; font-size: 12pt;">The important part you will ask me is here:</span></div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
<div><br>
</div>
<div> 91   io->SetFileName (filenames[0].c_str());</div>
<div> 92   io->ReadImageInformation();</div>
<div> 93 </div>
<div> 94   if (io->GetNumberOfDimensions()==2) {</div>
<div> 95 </div>
<div> 96     typedef itk::Image<unsigned char, 3>      ImageType;</div>
<div> 97     typedef itk::ImageSeriesReader<ImageType> SeriesReaderType;</div>
<div> 98 </div>
<div> 99 </div>
<div>100     SeriesReaderType::Pointer reader = SeriesReaderType::New();</div>
<div>101     std::cout << "Adding:\n";</div>
<div>102     for (unsigned int i=0; i<filenames.size(); i++)</div>
<div>103     {</div>
<div>104       std::cout << filenames[i] << std::endl;</div>
<div>105       reader->AddFileName ( filenames[i].c_str() );</div>
<div>106     }</div>
<div>107 </div>
<div><br>
</div>
Looks pretty standard, but no 3 scalar datums for an RGB voxel for non-false-colored volume.<br>
It is perported to work, and all other examples i see are none different from the code i used to generate a .vtk file.<br>
<br>
<br>
</div>
<div style="font-family: Calibri, Helvetica, sans-serif; font-size: 12pt; color: rgb(0, 0, 0);">
I cannot use IsoVolume If I load the jpegs directly in paraview,  but I can get RGB color voxels.<br>
The GOAL is to use IsoVolume on a volume of RGB points from frames from a video sequence.<br>
I have tried on and off for MANY YEARS to figure this out...    (its for an art project, metalcasting &3d Printing)</div>
</body>
</html>