fix whitespace and indentation
This commit is contained in:
parent
efec18499f
commit
b9d5fd3aa7
268
startCode.cpp
268
startCode.cpp
@ -28,13 +28,13 @@ using namespace DGtal;
|
|||||||
|
|
||||||
|
|
||||||
struct hueFct{
|
struct hueFct{
|
||||||
inline
|
inline
|
||||||
unsigned int operator() (unsigned int aVal) const
|
unsigned int operator() (unsigned int aVal) const
|
||||||
{
|
{
|
||||||
HueShadeColorMap<unsigned int> hueShade(0,255);
|
HueShadeColorMap<unsigned int> hueShade(0,255);
|
||||||
Color col = hueShade((unsigned int)aVal);
|
Color col = hueShade((unsigned int)aVal);
|
||||||
return (((unsigned int) col.red()) << 16)| (((unsigned int) col.green()) << 8)|((unsigned int) col.blue());
|
return (((unsigned int) col.red()) << 16)| (((unsigned int) col.green()) << 8)|((unsigned int) col.blue());
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Définition du type de viewer à utiliser.
|
// Définition du type de viewer à utiliser.
|
||||||
@ -57,30 +57,30 @@ void randomSeeds(Image &image, const unsigned int nb, const int value);
|
|||||||
|
|
||||||
int main( int argc, char** argv )
|
int main( int argc, char** argv )
|
||||||
{
|
{
|
||||||
QApplication application(argc,argv);
|
QApplication application(argc,argv);
|
||||||
ViewerType viewer;
|
ViewerType viewer;
|
||||||
|
|
||||||
// Appel aux méthodes des exercices.
|
// Appel aux méthodes des exercices.
|
||||||
if (argc > 2)
|
if (argc > 2)
|
||||||
{
|
{
|
||||||
std::stringstream ssAlgo;
|
std::stringstream ssAlgo;
|
||||||
ssAlgo << std::string(argv[1]);
|
ssAlgo << std::string(argv[1]);
|
||||||
|
|
||||||
std::stringstream ssFile;
|
std::stringstream ssFile;
|
||||||
ssFile << std::string(argv[2]);
|
ssFile << std::string(argv[2]);
|
||||||
if (ssAlgo.str() == "Sandbox")
|
if (ssAlgo.str() == "Sandbox")
|
||||||
imageSandbox(viewer, ssFile.str());
|
imageSandbox(viewer, ssFile.str());
|
||||||
else if (ssAlgo.str() == "DT")
|
else if (ssAlgo.str() == "DT")
|
||||||
transformeeEnDistance(viewer, ssFile.str());
|
transformeeEnDistance(viewer, ssFile.str());
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
std::cout << "Les paramètres n'a pas été fourni." << std::endl;
|
std::cout << "Les paramètres n'a pas été fourni." << std::endl;
|
||||||
std::cout << "startCode <paramètre = {Sandbox | DT}> <nom du fichier>" << std::endl;
|
std::cout << "startCode <paramètre = {Sandbox | DT}> <nom du fichier>" << std::endl;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return application.exec();
|
return application.exec();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -94,38 +94,38 @@ int main( int argc, char** argv )
|
|||||||
*/
|
*/
|
||||||
void imageSandbox(ViewerType& viewer, std::string filename)
|
void imageSandbox(ViewerType& viewer, std::string filename)
|
||||||
{
|
{
|
||||||
// Lance le visusalisateur.
|
// Lance le visusalisateur.
|
||||||
viewer.show();
|
viewer.show();
|
||||||
|
|
||||||
//Chargement d'une image dans une structure de données ImageContainerBySTLVector.
|
//Chargement d'une image dans une structure de données ImageContainerBySTLVector.
|
||||||
std::string inputFilename = examplesPath + "/" + filename;
|
std::string inputFilename = examplesPath + "/" + filename;
|
||||||
Image3D image = GenericReader<Image3D>::import(inputFilename);
|
Image3D image = GenericReader<Image3D>::import(inputFilename);
|
||||||
|
|
||||||
// Obtention du domaine (taille) de l'image chargée.
|
// Obtention du domaine (taille) de l'image chargée.
|
||||||
Z3i::Domain initialDomain = image.domain();
|
Z3i::Domain initialDomain = image.domain();
|
||||||
|
|
||||||
// Définition du gradient des couleurs.
|
// Définition du gradient des couleurs.
|
||||||
GradientColorMap<long> gradient( 0,30);
|
GradientColorMap<long> gradient( 0,30);
|
||||||
gradient.addColor(Color::Red);
|
gradient.addColor(Color::Red);
|
||||||
gradient.addColor(Color::Yellow);
|
gradient.addColor(Color::Yellow);
|
||||||
gradient.addColor(Color::Green);
|
gradient.addColor(Color::Green);
|
||||||
gradient.addColor(Color::Cyan);
|
gradient.addColor(Color::Cyan);
|
||||||
gradient.addColor(Color::Blue);
|
gradient.addColor(Color::Blue);
|
||||||
gradient.addColor(Color::Magenta);
|
gradient.addColor(Color::Magenta);
|
||||||
gradient.addColor(Color::Red);
|
gradient.addColor(Color::Red);
|
||||||
|
|
||||||
float min = 0.0;
|
float min = 0.0;
|
||||||
float max = 0.0;
|
float max = 0.0;
|
||||||
|
|
||||||
for(Z3i::Domain::ConstIterator it= image.domain().begin(),
|
for(Z3i::Domain::ConstIterator it= image.domain().begin(),
|
||||||
itend = image.domain().end(); it != itend; ++it)
|
itend = image.domain().end(); it != itend; ++it)
|
||||||
{
|
{
|
||||||
if (image(*it) > 0)
|
if (image(*it) > 0)
|
||||||
viewer << *it;
|
viewer << *it;
|
||||||
}
|
}
|
||||||
|
|
||||||
viewer << SetMode3D(image.className(), "BoundingBox");
|
viewer << SetMode3D(image.className(), "BoundingBox");
|
||||||
viewer << ViewerType::updateDisplay;
|
viewer << ViewerType::updateDisplay;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -139,86 +139,86 @@ void imageSandbox(ViewerType& viewer, std::string filename)
|
|||||||
*/
|
*/
|
||||||
void transformeeEnDistance(ViewerType& viewer, std::string filename)
|
void transformeeEnDistance(ViewerType& viewer, std::string filename)
|
||||||
{
|
{
|
||||||
// Affichage de la visualisation.
|
// Affichage de la visualisation.
|
||||||
viewer.show();
|
viewer.show();
|
||||||
// Nombre du fichier à charger.
|
// Nombre du fichier à charger.
|
||||||
std::string inputFilename = examplesPath + "/" + filename;
|
std::string inputFilename = examplesPath + "/" + filename;
|
||||||
|
|
||||||
// Création du type d'image.
|
// Création du type d'image.
|
||||||
//Default image selector = STLVector
|
//Default image selector = STLVector
|
||||||
typedef ImageSelector<Z3i::Domain, unsigned char>::Type Image;
|
typedef ImageSelector<Z3i::Domain, unsigned char>::Type Image;
|
||||||
|
|
||||||
//Chargement du fichier image dans la structure.
|
//Chargement du fichier image dans la structure.
|
||||||
Image image = VolReader<Image>::importVol( inputFilename );
|
Image image = VolReader<Image>::importVol( inputFilename );
|
||||||
// Obtention du domaine (taille) de l'image.
|
// Obtention du domaine (taille) de l'image.
|
||||||
Z3i::Domain domain = image.domain();
|
Z3i::Domain domain = image.domain();
|
||||||
|
|
||||||
Image imageSeeds ( domain);
|
Image imageSeeds ( domain);
|
||||||
for ( Image::Iterator it = imageSeeds.begin(), itend = imageSeeds.end();it != itend; ++it)
|
for ( Image::Iterator it = imageSeeds.begin(), itend = imageSeeds.end();it != itend; ++it)
|
||||||
(*it)=1;
|
(*it)=1;
|
||||||
//imageSeeds.setValue(p0, 0 );
|
//imageSeeds.setValue(p0, 0 );
|
||||||
randomSeeds(imageSeeds, 70, 0);
|
randomSeeds(imageSeeds, 70, 0);
|
||||||
|
|
||||||
|
|
||||||
typedef functors::SimpleThresholdForegroundPredicate<Image> Predicate;
|
typedef functors::SimpleThresholdForegroundPredicate<Image> Predicate;
|
||||||
Predicate aPredicate(imageSeeds,0);
|
Predicate aPredicate(imageSeeds,0);
|
||||||
|
|
||||||
// Création de type et de l'objet pour appliquer la transformée.
|
// Création de type et de l'objet pour appliquer la transformée.
|
||||||
typedef DistanceTransformation<Z3i::Space,Predicate, Z3i::L2Metric> DTL2;
|
typedef DistanceTransformation<Z3i::Space,Predicate, Z3i::L2Metric> DTL2;
|
||||||
DTL2 dtL2(&domain, &aPredicate, &Z3i::l2Metric);
|
DTL2 dtL2(&domain, &aPredicate, &Z3i::l2Metric);
|
||||||
|
|
||||||
// Detection des distances minimales et maximales.
|
// Detection des distances minimales et maximales.
|
||||||
unsigned int min = 0;
|
unsigned int min = 0;
|
||||||
unsigned int max = 0;
|
unsigned int max = 0;
|
||||||
for(DTL2::ConstRange::ConstIterator it = dtL2.constRange().begin(),
|
for(DTL2::ConstRange::ConstIterator it = dtL2.constRange().begin(),
|
||||||
itend=dtL2.constRange().end();
|
itend=dtL2.constRange().end();
|
||||||
it!=itend;
|
it!=itend;
|
||||||
++it)
|
++it)
|
||||||
{
|
{
|
||||||
if( (*it) < min )
|
if( (*it) < min )
|
||||||
min=(*it);
|
min=(*it);
|
||||||
if( (*it) > max )
|
if( (*it) > max )
|
||||||
max=(*it);
|
max=(*it);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Spécification des gradients de couleur pour la visualisation.
|
//Spécification des gradients de couleur pour la visualisation.
|
||||||
GradientColorMap<long> gradient( 0,30);
|
GradientColorMap<long> gradient( 0,30);
|
||||||
gradient.addColor(Color::Red);
|
gradient.addColor(Color::Red);
|
||||||
gradient.addColor(Color::Yellow);
|
gradient.addColor(Color::Yellow);
|
||||||
gradient.addColor(Color::Green);
|
gradient.addColor(Color::Green);
|
||||||
gradient.addColor(Color::Cyan);
|
gradient.addColor(Color::Cyan);
|
||||||
gradient.addColor(Color::Blue);
|
gradient.addColor(Color::Blue);
|
||||||
gradient.addColor(Color::Magenta);
|
gradient.addColor(Color::Magenta);
|
||||||
gradient.addColor(Color::Red);
|
gradient.addColor(Color::Red);
|
||||||
|
|
||||||
// Affectation du mode de visualisation 3D.
|
// Affectation du mode de visualisation 3D.
|
||||||
viewer << SetMode3D( (*(domain.begin())).className(), "Paving" );
|
viewer << SetMode3D( (*(domain.begin())).className(), "Paving" );
|
||||||
|
|
||||||
// Parcours de tous les voxels de l'image avec un iterateur sur le domaine.
|
// Parcours de tous les voxels de l'image avec un iterateur sur le domaine.
|
||||||
for(Z3i::Domain::ConstIterator it = domain.begin(), itend=domain.end();
|
for(Z3i::Domain::ConstIterator it = domain.begin(), itend=domain.end();
|
||||||
it!=itend;
|
it!=itend;
|
||||||
++it)
|
++it)
|
||||||
{
|
{
|
||||||
|
|
||||||
// Calcul de la transformée en distance pour le voxel courant.
|
// Calcul de la transformée en distance pour le voxel courant.
|
||||||
double valDist= dtL2( (*it) );
|
double valDist= dtL2( (*it) );
|
||||||
|
|
||||||
// Calcul du gradient de couleur pour cette distance.
|
// Calcul du gradient de couleur pour cette distance.
|
||||||
Color c= gradient(valDist);
|
Color c= gradient(valDist);
|
||||||
viewer << CustomColors3D(Color((float)(c.red()),
|
viewer << CustomColors3D(Color((float)(c.red()),
|
||||||
(float)(c.green()),
|
(float)(c.green()),
|
||||||
(float)(c.blue(),205)),
|
(float)(c.blue(),205)),
|
||||||
Color((float)(c.red()),
|
Color((float)(c.red()),
|
||||||
(float)(c.green()),
|
(float)(c.green()),
|
||||||
(float)(c.blue()),205));
|
(float)(c.blue()),205));
|
||||||
// Le viewer reçoit le prochain voxel pour visualisation.
|
// Le viewer reçoit le prochain voxel pour visualisation.
|
||||||
if (image(*it) > 0)
|
if (image(*it) > 0)
|
||||||
viewer << *it ;
|
viewer << *it ;
|
||||||
}
|
}
|
||||||
|
|
||||||
//viewer << ClippingPlane(0,1,0, -40) << Viewer3D<>::updateDisplay;
|
//viewer << ClippingPlane(0,1,0, -40) << Viewer3D<>::updateDisplay;
|
||||||
// Mise à jour du visualisateur après le parcours de tous le voxels.
|
// Mise à jour du visualisateur après le parcours de tous le voxels.
|
||||||
viewer<< Viewer3D<>::updateDisplay;
|
viewer<< Viewer3D<>::updateDisplay;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -231,21 +231,21 @@ void transformeeEnDistance(ViewerType& viewer, std::string filename)
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
template<typename Image>
|
template<typename Image>
|
||||||
void randomSeeds(Image &image, const unsigned int nb, const int value)
|
void randomSeeds(Image &image, const unsigned int nb, const int value)
|
||||||
{
|
{
|
||||||
typename Image::Point p, low = image.domain().lowerBound();
|
typename Image::Point p, low = image.domain().lowerBound();
|
||||||
typename Image::Vector ext;
|
typename Image::Vector ext;
|
||||||
srand ( time(NULL) );
|
srand ( time(NULL) );
|
||||||
|
|
||||||
ext = image.extent();
|
ext = image.extent();
|
||||||
|
|
||||||
for (unsigned int k = 0 ; k < nb; k++)
|
for (unsigned int k = 0 ; k < nb; k++)
|
||||||
{
|
{
|
||||||
for (unsigned int dim = 0; dim < Image::dimension; dim++)
|
for (unsigned int dim = 0; dim < Image::dimension; dim++)
|
||||||
p[dim] = rand() % (ext[dim]) + low[dim];
|
p[dim] = rand() % (ext[dim]) + low[dim];
|
||||||
|
|
||||||
image.setValue(p, value);
|
image.setValue(p, value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// //
|
// //
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
|
Loading…
Reference in New Issue
Block a user