/*# --------------------------------------------------------------------- # # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image # pour la Sant�) # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton # Previous Authors : Laurent Guigues, Jean-Pierre Roux # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil # # This software is governed by the CeCILL-B license under French law and # abiding by the rules of distribution of free software. You can use, # modify and/ or redistribute the software under the terms of the CeCILL-B # license as circulated by CEA, CNRS and INRIA at the following URL # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html # or in the file LICENSE.txt. # # As a counterpart to the access to the source code and rights to copy, # modify and redistribute granted by the license, users are provided only # with a limited warranty and the software's author, the holder of the # economic rights, and the successive licensors have only limited # liability. # # The fact that you are presently reading this means that you have had # knowledge of the CeCILL-B license and that you accept its terms. # ------------------------------------------------------------------------ */ #include "FillFilter.h" FillFilter::FillFilter() { _tolerancefill = 50; _distancefill = 500; _limitRecursionFill = 50000; _auxImageFill = NULL; } //--------------------------------------------------------------------------- FillFilter::~FillFilter() { if (_auxImageFill != NULL) { _auxImageFill->Delete(); } } //--------------------------------------------------------------------------- void FillFilter::SetImages(vtkImageData *image,vtkImageData *image2) // virtual { baseFilterManualPaint::SetImages(image,image2); if (_auxImageFill != NULL) { _auxImageFill->Delete(); } _auxImageFill = vtkImageData::New(); _auxImageFill->SetDimensions(_maxX + 1, _maxY + 1, _maxZ + 1); _auxImageFill->SetOrigin(0, 0, 0); _auxImageFill->SetExtent(0, _maxX, 0, _maxY, 0, _maxZ); _auxImageFill->SetWholeExtent(0, _maxX, 0, _maxY, 0, _maxZ); _auxImageFill->SetScalarTypeToUnsignedChar(); _auxImageFill->AllocateScalars(); } //--------------------------------------------------------------------------- void FillFilter::Run() // virtual { if ((_px >= _minX) && (_px <= _maxX) && (_py >= _minY) && (_py <= _maxY) && (_pz >= _minZ) && (_pz <= _maxZ)) { _graylevelbasefill = _image->GetScalarComponentAsDouble(_px, _py, _pz, 0); _pxfill = _px; _pyfill = _py; _pzfill = _pz; _distbasefill = _distancefill * _distancefill; _countRecursiveFill = 0; _countRecursiveFillProblem = 0; _countProgressingFill = 0; unsigned char *pImage = (unsigned char *) _auxImageFill->GetScalarPointer(); _usingAuxImageFill = false; memset(pImage, 0, _maxX * _maxY * _maxZ); FillToolRecursive(_px, _py, _pz); // printf("--\n"); int ii, jj, kk; while (_countRecursiveFillProblem != 0) { _countRecursiveFillProblem = 0; _usingAuxImageFill = true; for (ii = 0; ii <= _maxX; ii++) { for (jj = 0; jj <= _maxY; jj++) { for (kk = 0; kk <= _maxZ; kk++) { pImage = (unsigned char *) _auxImageFill->GetScalarPointer( ii, jj, kk); if ((*pImage) == 1) { FillToolRecursive(ii, jj, kk); } } // for kk } // for jj } //for ii // printf("-\n"); } // while } //if _minX _maxX _minY _maxY _minZ _maxZ } //--------------------------------------------------------------------------- void FillFilter::FillToolRecursive(int px, int py, int pz) { _countRecursiveFill++; _countProgressingFill++; if (_countProgressingFill > 200000) { printf("R %ld \n", _countRecursiveFill); _countProgressingFill = 0; } if ((px >= _minX) && (px <= _maxX) && (py >= _minY) && (py <= _maxY) && (pz >= _minZ) && (pz <= _maxZ)) { if (_usingAuxImageFill == true) { this->_IMManager->AddModifiedPixel(px, py, pz); //DFCH _auxImageFill->SetScalarComponentFromFloat(px, py, pz, 0, 0); } _tmpDistfill = (px - _pxfill) * (px - _pxfill) + (py - _pyfill) * (py - _pyfill) + (pz - _pzfill) * (pz - _pzfill); _tmpiglfill = _image->GetScalarComponentAsDouble(px, py, pz, 0); if (_image2!=NULL) { _tmpiglfill2 = _image2->GetScalarComponentAsDouble(px, py, pz, 0); } else { _tmpiglfill2 = _tmpiglfill; } float grayLBFMTOL = _graylevelbasefill - _tolerancefill; float grayLBFPTOL = _graylevelbasefill + _tolerancefill; bool isInRange = false; //DFCH if (_RangeMin <= grayLBFMTOL && _RangeMax >= grayLBFPTOL) { isInRange = true; } //fi esle else if (_RangeMin > grayLBFMTOL && _RangeMax >= grayLBFPTOL) { grayLBFMTOL = _RangeMin; isInRange = true; } //fi esle else if (_RangeMin <= grayLBFMTOL && _RangeMax < grayLBFPTOL) { grayLBFPTOL = _RangeMax; isInRange = true; } //fi esle else if ((_RangeMin <= _graylevelbasefill) && (_graylevelbasefill <= _RangeMax)) { grayLBFMTOL = _RangeMin; grayLBFPTOL = _RangeMax; isInRange = true; } //fi esle if (isInRange) { _auxGrayLevelValidationFill = (_tmpiglfill != _graylevel) && (_tmpiglfill2 != _graylevel) && (_tmpiglfill >= grayLBFMTOL) && (_tmpiglfill <= grayLBFPTOL) && (_tmpDistfill <= _distbasefill); //DFCH } else { _auxGrayLevelValidationFill = false; } // if isInRange //DFCH /*_auxGrayLevelValidationFill = (_tmpiglfill!=_graylevel) && (_tmpiglfill>=_graylevelbasefill-_tolerancefill) && (_tmpiglfill<=_graylevelbasefill+_tolerancefill) && (_tmpDistfill<=_distbasefill);*/ //DFCH if (_auxGrayLevelValidationFill == true) { this->_IMManager->AddModifiedPixel(px, py, pz); //DFCH if (_image2!=NULL) { _image2->SetScalarComponentFromFloat(px, py, pz, 0,(float) _graylevel); } else { _image->SetScalarComponentFromFloat(px, py, pz, 0,(float) _graylevel); } if (_countRecursiveFill < _limitRecursionFill) { if (_2D3D == 0) //2D { if (_direction == 0) // YZ { //FillToolRecursive(px+1,py,pz); //FillToolRecursive(px-1,py,pz); FillToolRecursive(px, py + 1, pz); FillToolRecursive(px, py - 1, pz); FillToolRecursive(px, py, pz - 1); FillToolRecursive(px, py, pz + 1); } if (_direction == 1) // XZ { FillToolRecursive(px + 1, py, pz); FillToolRecursive(px - 1, py, pz); //FillToolRecursive(px,py+1,pz); //FillToolRecursive(px,py-1,pz); FillToolRecursive(px, py, pz - 1); FillToolRecursive(px, py, pz + 1); } if (_direction == 2) // XY { FillToolRecursive(px + 1, py, pz); FillToolRecursive(px, py + 1, pz); FillToolRecursive(px - 1, py, pz); FillToolRecursive(px, py - 1, pz); //FillToolRecursive(px,py,pz-1); //FillToolRecursive(px,py,pz+1); } } else { // 3D FillToolRecursive(px + 1, py, pz); FillToolRecursive(px - 1, py, pz); FillToolRecursive(px, py + 1, pz); FillToolRecursive(px, py - 1, pz); FillToolRecursive(px, py, pz - 1); FillToolRecursive(px, py, pz + 1); } // 2D 3D } //_countRecursiveFill } // _graylevel if ((_auxGrayLevelValidationFill == true) && (_countRecursiveFill >= _limitRecursionFill)) { _countRecursiveFillProblem++; if (_2D3D == 0) //2D { if (_direction == 0) // YZ { //SetAuxImageFill(px+1,py,pz); //SetAuxImageFill(px-1,py,pz); SetAuxImageFill(px, py + 1, pz); SetAuxImageFill(px, py - 1, pz); SetAuxImageFill(px, py, pz - 1); SetAuxImageFill(px, py, pz + 1); } if (_direction == 1) // XZ { SetAuxImageFill(px + 1, py, pz); SetAuxImageFill(px - 1, py, pz); //SetAuxImageFill(px,py+1,pz); //SetAuxImageFill(px,py-1,pz); SetAuxImageFill(px, py, pz - 1); SetAuxImageFill(px, py, pz + 1); } if (_direction == 2) // XY { SetAuxImageFill(px + 1, py, pz); SetAuxImageFill(px - 1, py, pz); SetAuxImageFill(px, py + 1, pz); SetAuxImageFill(px, py - 1, pz); //SetAuxImageFill(px,py,pz-1); //SetAuxImageFill(px,py,pz+1); } } else { // 3D SetAuxImageFill(px + 1, py, pz); SetAuxImageFill(px - 1, py, pz); SetAuxImageFill(px, py + 1, pz); SetAuxImageFill(px, py - 1, pz); SetAuxImageFill(px, py, pz - 1); SetAuxImageFill(px, py, pz + 1); } // 2D 3D } // _graylevel //_limitRecursionFill } //if _minX _maxX _minY _maxY _minZ _maxZ _countRecursiveFill--; } //--------------------------------------------------------------------------- void FillFilter::SetAuxImageFill(int px, int py, int pz) { if ((px >= _minX) && (px <= _maxX) && (py >= _minY) && (py <= _maxY) && (pz >= _minZ) && (pz <= _maxZ)) { this->_IMManager->AddModifiedPixel(px, py, pz); //DFCH _auxImageFill->SetScalarComponentFromFloat(px, py, pz, 0, 1); } } //--------------------------------------------------------------------------- void FillFilter::SetToleranceFill(double tolerancefill) { _tolerancefill = tolerancefill; } //--------------------------------------------------------------------------- void FillFilter::SetDistanceFill(int distancefill) { _distancefill = distancefill; }