Skip to content
Snippets Groups Projects
bsdetector.cpp 19.6 KiB
Newer Older
even's avatar
even committed
#include "bsdetector.h"


const string BSDetector::VERSION = "0.1.1";
even's avatar
even committed
const int BSDetector::STEP_FINAL = 0;
const int BSDetector::STEP_INITIAL = 1;
const int BSDetector::STEP_PRELIM = 2;

even's avatar
even committed
const int BSDetector::RESULT_UNDETERMINED = -1;
const int BSDetector::RESULT_OK = 0;
even's avatar
even committed
const int BSDetector::RESULT_PRELIM_NO_DETECTION = 1;
const int BSDetector::RESULT_PRELIM_TOO_FEW = 2;
even's avatar
even committed
const int BSDetector::RESULT_INITIAL_NO_DETECTION = 11;
const int BSDetector::RESULT_INITIAL_TOO_FEW = 12;
const int BSDetector::RESULT_INITIAL_TOO_SPARSE = 13;
const int BSDetector::RESULT_INITIAL_TOO_MANY_OUTLIERS = 14;
even's avatar
even committed
const int BSDetector::RESULT_INITIAL_CLOSE_ORIENTATION = 15;
even's avatar
even committed
const int BSDetector::RESULT_FINAL_NO_DETECTION = 21;
const int BSDetector::RESULT_FINAL_TOO_FEW = 22;
const int BSDetector::RESULT_FINAL_TOO_SPARSE = 23;
const int BSDetector::RESULT_FINAL_TOO_MANY_OUTLIERS = 24;

const int BSDetector::DEFAULT_FAST_TRACK_SCAN_WIDTH = 16;
even's avatar
even committed
const int BSDetector::DEFAULT_FINE_TRACK_MAX_WIDTH = 3;
const int BSDetector::DEFAULT_FAST_TRACK_MAX_MARGIN = 2;

even's avatar
even committed
const int BSDetector::DEFAULT_BS_MIN_SIZE = 5;
const int BSDetector::ABSOLUTE_BS_MIN_SIZE = 3;
const int BSDetector::DEFAULT_CONNECT_MIN_SIZE = 5;
const int BSDetector::DEFAULT_AUTO_RESOLUTION = 10;
even's avatar
even committed
const int BSDetector::PRELIM_MIN_HALF_WIDTH = 10;
even's avatar
even committed


BSDetector::BSDetector ()
{
  gMap = NULL;

even's avatar
even committed
  fmaxWidth = DEFAULT_FINE_TRACK_MAX_WIDTH;
  imaxMargin = DEFAULT_FAST_TRACK_MAX_MARGIN;

even's avatar
even committed
  prelimDetectionOn = false;
  bst0 = (prelimDetectionOn ? new BSTracker () : NULL);
even's avatar
even committed
  bst1 = new BSTracker ();
even's avatar
even committed
  // bst1->setPixelLackTolerence (bst1->getVicinityThreshold ());
even's avatar
even committed
  bst2 = new BSTracker ();
even's avatar
even committed
  bstold = new BSTracker ();
  if (bstold->dynamicScansOn ()) bstold->toggleDynamicScans ();
  if (bstold->isThinningOn ()) bstold->toggleThinning ();
even's avatar
even committed
  if (bstold->isThickenningOn ()) bstold->toggleThickenning ();
even's avatar
even committed

even's avatar
even committed
  oldp = false;
  prefilteringOn = false;
even's avatar
even committed
  lsf1 = (prefilteringOn ? new LineSpaceFilter () : NULL);
  filteringOn = false;
  lsf2 = (filteringOn ? new LineSpaceFilter () : NULL);

even's avatar
even committed
  edgeDirection = 0;   // detects strokes (not only edges)
even's avatar
even committed
  bsMinSize = DEFAULT_BS_MIN_SIZE;
  ccOn = false;
even's avatar
even committed
  ccMinSize = DEFAULT_CONNECT_MIN_SIZE;
even's avatar
even committed
  recenteringOn = true;
  fittingOn = false;
even's avatar
even committed
  densityTestOn = true;
even's avatar
even committed
  finalDensityTestOn = false;
  finalLengthTestOn = false;
even's avatar
even committed
  multiSelection = false;
even's avatar
even committed
  autodet = false;
even's avatar
even committed
  autoResol = DEFAULT_AUTO_RESOLUTION;
  maxtrials = 0;
even's avatar
even committed
  nbtrials = 0;
even's avatar
even committed

even's avatar
even committed
  bspre = NULL;
even's avatar
even committed
  bsini = NULL;
  bsf = NULL;
  resultValue = RESULT_UNDETERMINED;
}


BSDetector::~BSDetector ()
{
even's avatar
even committed
  if (prelimDetectionOn) delete bst0;
even's avatar
even committed
  delete bst1;
  delete bst2;
  if (lsf1 != NULL) delete lsf1;
  if (lsf2 != NULL) delete lsf2;
even's avatar
even committed
  if (bsini != NULL) delete bsini;
  if (bsf != NULL) delete bsf;
even's avatar
even committed
  vector <BlurredSegment *>::iterator it = mbsf.begin ();
even's avatar
even committed
  while (it != mbsf.end ()) delete (*it++);
even's avatar
even committed
}


void BSDetector::setGradientMap (VMap *data)
{
  gMap = data;
even's avatar
even committed
  if (prelimDetectionOn) bst0->setGradientMap (data);
even's avatar
even committed
  bst1->setGradientMap (data);
  bst2->setGradientMap (data);
even's avatar
even committed
  bstold->setGradientMap (data);
even's avatar
even committed
}


void BSDetector::detectAll ()
{
even's avatar
even committed
  autodet = true;
even's avatar
even committed
  freeMultiSelection ();
even's avatar
even committed
  gMap->setMasking (true);
  gMap->clearMask ();
even's avatar
even committed

even's avatar
even committed
  bool isnext = true;
  nbtrials = 0;
even's avatar
even committed
  int width = gMap->getWidth ();
  int height = gMap->getHeight ();
even's avatar
even committed
  for (int x = width / 2; isnext && x > 0; x -= autoResol)
    isnext = runMultiDetection (Pt2i (x, 0), Pt2i (x, height - 1));
  for (int x = width / 2 + autoResol; isnext && x < width - 1; x += autoResol)
    isnext = runMultiDetection (Pt2i (x, 0), Pt2i (x, height - 1));
  for (int y = height / 2; isnext && y > 0; y -= autoResol)
    isnext = runMultiDetection (Pt2i (0, y), Pt2i (width - 1, y));
  for (int y = height / 2 + autoResol; isnext && y < height - 1; y += autoResol)
    isnext = runMultiDetection (Pt2i (0, y), Pt2i (width - 1, y));
  if (maxtrials > (int) (mbsf.size ())) maxtrials = 0;
even's avatar
even committed

  gMap->setMasking (false);
}


even's avatar
even committed
void BSDetector::detectAllWithBalancedXY ()
{
  autodet = true;
  freeMultiSelection ();
  gMap->setMasking (true);
  gMap->clearMask ();
even's avatar
even committed

  bool isnext = true;
  nbtrials = 0;
  int width = gMap->getWidth ();
  int height = gMap->getHeight ();
  int xg = width / 2, yb = height / 2;
  int xd = xg + autoResol, yh = yb + autoResol;
  bool agauche = true, enbas = true, adroite = true, enhaut = true;
  while (isnext && (agauche || enbas || adroite || enhaut))
  {
    if (agauche)
    {
      isnext = runMultiDetection (Pt2i (xg, 0), Pt2i (xg, height - 1));
      xg -= autoResol;
      if (xg <= 0) agauche = false;
    }
    if (isnext && enbas)
    {
      isnext = runMultiDetection (Pt2i (0, yb), Pt2i (width - 1, yb));
      yb -= autoResol;
      if (yb <= 0) enbas = false;
    }
    if (isnext && adroite)
    {
      isnext = runMultiDetection (Pt2i (xd, 0), Pt2i (xd, height - 1));
      xd += autoResol;
      if (xd >= width - 1) adroite = false;
    }
    if (isnext && enhaut)
    {
      isnext = runMultiDetection (Pt2i (0, yh), Pt2i (width - 1, yh));
      yh += autoResol;
      if (yh >= height - 1) enhaut = false;
    }
  }
  if (maxtrials > (int) (mbsf.size ())) maxtrials = 0;
even's avatar
even committed
  gMap->setMasking (false);
}


even's avatar
even committed
void BSDetector::detectSelection (const Pt2i &p1, const Pt2i &p2)
{
even's avatar
even committed
  autodet = false;
even's avatar
even committed
  freeMultiSelection ();
  if (multiSelection)
  {
    gMap->setMasking (true);
    gMap->clearMask ();
even's avatar
even committed
    nbtrials = 0;
    runMultiDetection (p1, p2);
    if (maxtrials > (int) (mbsf.size ())) maxtrials = 0;
even's avatar
even committed
    gMap->setMasking (false);
  }
even's avatar
even committed
  else
    if (oldp) olddetect (p1, p2);
    else detect (p1, p2);
even's avatar
even committed
void BSDetector::redetect ()
{
  if (autodet) detectAll ();
  else detectSelection (inip1, inip2);
}


even's avatar
even committed
void BSDetector::freeMultiSelection ()
even's avatar
even committed
{
even's avatar
even committed
  vector<BlurredSegment *>::iterator it = mbsf.begin ();
even's avatar
even committed
  while (it != mbsf.end ()) delete (*it++);
  mbsf.clear ();
}


even's avatar
even committed
bool BSDetector::runMultiDetection (const Pt2i &p1, const Pt2i &p2)
even's avatar
even committed
{
  vector<Pt2i> pts;
  p1.draw (pts, p2);
  int locmax[pts.size ()];
even's avatar
even committed
  int nlm = gMap->localMax (locmax, pts);
  bool isnext = true;
  for (int i = 0; isnext && i < nlm; i++)
even's avatar
even committed
  {
even's avatar
even committed
    Pt2i ptstart = pts.at (locmax[i]);
    if (gMap->isFree (ptstart))
even's avatar
even committed
    {
      int oldEdgeDir = edgeDirection;
      if (edgeDirection != 0) edgeDirection = 1;
      while (isnext && edgeDirection >= -1)
even's avatar
even committed
        if (oldp) olddetect (p1, p2, true, ptstart);
        else detect (p1, p2, true, ptstart);
        if (bsf != NULL)
        {
          gMap->setMask (bsf->getAllPoints ());
          mbsf.push_back (bsf);
          bsf = NULL; // to avoid BS deletion
          if ((int) (mbsf.size ()) == maxtrials) isnext = false;
        nbtrials ++;
        edgeDirection -= 2;
      edgeDirection = oldEdgeDir;
even's avatar
even committed
    }
  }
even's avatar
even committed
  return (isnext);
even's avatar
even committed
}


even's avatar
even committed
void BSDetector::olddetect (const Pt2i &p1, const Pt2i &p2,
                            bool centralp, const Pt2i &pc)
{
even's avatar
even committed
  // Entry check
  //------------
  if (p1.equals (p2)
      || ((! centralp) && p1.chessboard (p2) < BSTracker::MIN_SCAN)) return;

even's avatar
even committed
  // Clearance
  //----------
  resultValue = RESULT_UNDETERMINED;
  bst1->clear ();
  bst2->clear ();
  if (bsini != NULL) delete bsini;
  bsini = NULL;
  if (bsf != NULL) delete bsf;
  bsf = NULL;

  inip1.set (p1);
  inip2.set (p2);
even's avatar
even committed
  iniwidth = (centralp ? DEFAULT_FAST_TRACK_SCAN_WIDTH : 0);
even's avatar
even committed
  inipc.set (pc);

  // Initial detection based on highest gradient without orientation constraint
  //---------------------------------------------------------------------------
even's avatar
even committed
  bsini = bst1->fastTrack (DEFAULT_FAST_TRACK_SCAN_WIDTH / 4,
                           inip1, inip2, iniwidth, inipc);
even's avatar
even committed
  if (bsini == NULL || bsini->size () < bsMinSize)
  {
    resultValue = (bsini == NULL ? RESULT_INITIAL_NO_DETECTION
                                 : RESULT_INITIAL_TOO_FEW);
    return;
  }

  // Density test
  //-------------
/*
  if (densityTestOn)
  {
    DigitalStraightLine mydsl (inip1, inip2, DigitalStraightLine::DSL_NAIVE);
    int mydrlf = mydsl.manhattan (bsini->getLastRight ())
                 - mydsl.manhattan (bsini->getLastLeft ());
    if (mydrlf < 0) mydrlf = -mydrlf; // Case of horizontal P1P2
    int expansion = 1 + mydrlf;
    if (bsini->size () < expansion / 2)
    {
      resultValue = RESULT_INITIAL_TOO_SPARSE;
      return;
    }
  }
*/

even's avatar
even committed
  // Orientation test for automatic extractions
  //-------------------------------------------
  Vr2i bsinidir = bsini->getSupportVector();
  if (bsinidir.orientedAs (inip1.vectorTo (inip2)))
  {
    resultValue = RESULT_INITIAL_CLOSE_ORIENTATION;
    return;
  }

even's avatar
even committed
  // Gradient reference selection
  //-----------------------------
  Pt2i pCenter = bsini->getCenter ();
  Vr2i gRef = gMap->getValue (pCenter);
  if (edgeDirection == -1) gRef.invert ();

  // Scan recentering and fitting
  //-----------------------------
  if (recenteringOn)
    pCenter = bsini->getSegment()->centerOfIntersection (inip1, inip2);

  // Finer detection based on gradient maxima with orientation constraint
  //---------------------------------------------------------------------
even's avatar
even committed
  bsf = bstold->fineTrack (fmaxWidth, pCenter, bsinidir,
                           4 * fmaxWidth, gRef);
even's avatar
even committed
  if (bsf == NULL || bsf->size () < bsMinSize)
  {
    resultValue = (bsf == NULL ? RESULT_FINAL_NO_DETECTION
                               : RESULT_FINAL_TOO_FEW);
    return;
  }

  // Scan recentering and fitting
  //-----------------------------
  pCenter = bsini->getCenter ();
  if (recenteringOn)
    pCenter = bsf->getSegment()->centerOfIntersection (inip1, inip2);

  // Third detection based on gradient maxima with orientation constraint
  //---------------------------------------------------------------------
even's avatar
even committed
  BlurredSegment *bsf2 = bstold->fineTrack (fmaxWidth,
                                            pCenter, bsf->getSupportVector(),
                                            4 * fmaxWidth, gRef);
even's avatar
even committed
  if (bsf2 == NULL || bsf2->size () < bsMinSize)
  {
    resultValue = (bsf2 == NULL ? RESULT_FINAL_NO_DETECTION
                                : RESULT_FINAL_TOO_FEW);
    if (bsf2 != NULL) delete bsf2;
    return;
  }
  else
  {
    delete bsf;
    bsf = bsf2;
  }

even's avatar
even committed
  // Length test
  //------------
  if (finalLengthTestOn)
  {
    DigitalStraightSegment *dss = bsf->getSegment ();
    if (dss == NULL || (int) (bsf->getAllPoints().size ())
                       < (10 * dss->period ()) / dss->width ())
even's avatar
even committed
    {
      resultValue = RESULT_FINAL_TOO_SPARSE;
      delete bsf;
      bsf = NULL;
      return;
    }
  }

  // New density test
  //-----------------
  if (finalDensityTestOn)
  {
    DigitalStraightLine mydsl (inip1, inip2, DigitalStraightLine::DSL_NAIVE);
    int mydrlf = mydsl.manhattan (bsf->getLastRight ())
                 - mydsl.manhattan (bsf->getLastLeft ());
    if (mydrlf < 0) mydrlf = -mydrlf; // Case of horizontal P1P2
    int expansion = 1 + mydrlf;
    if (bsf->size () < expansion / 2)
    {
      resultValue = RESULT_FINAL_TOO_SPARSE;
      delete bsf;
      bsf = NULL;
      return;
    }
  }

  // Connected components analysis
  //------------------------------
  if (ccOn)
  {
    int bsccp = bsf->countOfConnectedPoints (ccMinSize);
    int bssize = bsf->getAllPoints().size ();
    if (bsccp < bssize / 2)
    {
      resultValue = RESULT_FINAL_TOO_SPARSE;
      delete bsf;
      bsf = NULL;
      return;
    }
even's avatar
even committed

/*
    if (bssize < 20 || bsf->countOfConnectedComponents (bssize / 4) == 0)
    {
      resultValue = RESULT_FINAL_TOO_SPARSE;
      delete bsf;
      bsf = NULL;
      return;
    }
*/
even's avatar
even committed
  resultValue = RESULT_OK;
}


even's avatar
even committed
void BSDetector::detect (const Pt2i &p1, const Pt2i &p2,
                         bool centralp, const Pt2i &pc)
even's avatar
even committed
{
even's avatar
even committed
  // Entry check
  //------------
  if (p1.equals (p2)
      || ((! centralp) && p1.chessboard (p2) < BSTracker::MIN_SCAN)) return;

even's avatar
even committed

even's avatar
even committed
  // Clearance
  //----------
  resultValue = RESULT_UNDETERMINED;
even's avatar
even committed
  if (prelimDetectionOn) bst0->clear ();
even's avatar
even committed
  bst1->clear ();
  bst2->clear ();
  if (prefilteringOn) lsf1->clear ();
  if (filteringOn) lsf2->clear ();
even's avatar
even committed
  if (bspre != NULL) delete bspre;
  bspre = NULL;
even's avatar
even committed
  if (bsini != NULL) delete bsini;
even's avatar
even committed
  bsini = NULL;
even's avatar
even committed
  if (bsf != NULL) delete bsf;
even's avatar
even committed
  bsf = NULL;
even's avatar
even committed

even's avatar
even committed
  prep1.set (p1);
  prep2.set (p2);
even's avatar
even committed
  prewidth = (centralp ? DEFAULT_FAST_TRACK_SCAN_WIDTH : 0);
even's avatar
even committed
  prepc.set (pc);
even's avatar
even committed

  // Preliminary based on highest gradient without orientation constraint
  //---------------------------------------------------------------------
even's avatar
even committed
  if (prelimDetectionOn)
even's avatar
even committed
  {
even's avatar
even committed
    bspre = bst0->fastTrack (fmaxWidth + imaxMargin,
                             prep1, prep2, prewidth, prepc);
even's avatar
even committed
    if (bspre == NULL || bspre->size () < bsMinSize)
even's avatar
even committed
    {
even's avatar
even committed
      resultValue = (bspre == NULL ? RESULT_PRELIM_NO_DETECTION
                                   : RESULT_PRELIM_TOO_FEW);
even's avatar
even committed
      return;
    }

even's avatar
even committed
    Vr2i v0 = bspre->getSupportVector ();
even's avatar
even committed
    int l = v0.chessboard ();
even's avatar
even committed
    if (l != 0)
even's avatar
even committed
    {
even's avatar
even committed
      Pt2i pcentral = bspre->getSegment()->centerOfIntersection (prep1, prep2);
even's avatar
even committed
      int detw = 2 * (1 + bspre->minimalWidth().floor ());
even's avatar
even committed
      if (detw < PRELIM_MIN_HALF_WIDTH) detw = PRELIM_MIN_HALF_WIDTH;
      int dx = (int) ((v0.y () * detw) / l);
      int dy = (int) (- (v0.x () * detw) / l);
even's avatar
even committed
      inip1 = Pt2i (pcentral.x () + dx, pcentral.y () + dy);
      inip2 = Pt2i (pcentral.x () - dx, pcentral.y () - dy);
even's avatar
even committed
      iniwidth = 0;
even's avatar
even committed
    }
even's avatar
even committed
  }
  else
  {
    inip1.set (p1);
    inip2.set (p2);
even's avatar
even committed
    iniwidth = (centralp ? DEFAULT_FAST_TRACK_SCAN_WIDTH : 0);
even's avatar
even committed
    inipc.set (pc);
even's avatar
even committed
  }
even's avatar
even committed

  // Initial detection based on highest gradient without orientation constraint
  //---------------------------------------------------------------------------
even's avatar
even committed
  bsini = bst1->fastTrack (fmaxWidth + imaxMargin,
                           inip1, inip2, iniwidth, inipc);
even's avatar
even committed
  if (bsini == NULL || bsini->size () < bsMinSize)
  {
    resultValue = (bsini == NULL ? RESULT_INITIAL_NO_DETECTION
                                 : RESULT_INITIAL_TOO_FEW);
    return;
  }

  // Density test
  //-------------
  if (densityTestOn)
  {
even's avatar
even committed
    DigitalStraightLine mydsl (inip1, inip2, DigitalStraightLine::DSL_NAIVE);
even's avatar
even committed
    int mydrlf = mydsl.manhattan (bsini->getLastRight ())
                 - mydsl.manhattan (bsini->getLastLeft ());
    if (mydrlf < 0) mydrlf = -mydrlf; // Case of horizontal P1P2
    int expansion = 1 + mydrlf;
    if (bsini->size () < expansion / 2)
    {
      resultValue = RESULT_INITIAL_TOO_SPARSE;
      return;
    }
  }

  // Hough filtering on the initial segment
  //---------------------------------------
  if (prefilteringOn)
  {
    BlurredSegment *fbs = lsf1->filter (bsini);
    if (fbs != NULL)
    {
      delete bsini;
      bsini = fbs;
    }
  }
  if (bsini->size () < bsMinSize)
  {
    resultValue = RESULT_INITIAL_TOO_MANY_OUTLIERS;
    return;
  }

even's avatar
even committed
  // Orientation test for automatic extractions
  //-------------------------------------------
  Vr2i bsinidir = bsini->getSupportVector();
  if (bsinidir.orientedAs (inip1.vectorTo (inip2)))
  {
    resultValue = RESULT_INITIAL_CLOSE_ORIENTATION;
    return;
  }
  
even's avatar
even committed
  // Gradient reference selection
  //-----------------------------
even's avatar
even committed
  Pt2i pCenter = bsini->getCenter ();
even's avatar
even committed
  Vr2i gRef = gMap->getValue (pCenter);
even's avatar
even committed
  if (edgeDirection == -1) gRef.invert ();
even's avatar
even committed

  // Scan recentering and fitting
  //-----------------------------
  if (recenteringOn)
even's avatar
even committed
    pCenter = bsini->getSegment()->centerOfIntersection (inip1, inip2);
even's avatar
even committed
  int bswidth = fmaxWidth;
even's avatar
even committed
  if (fittingOn)
even's avatar
even committed
  {
    DigitalStraightSegment *dss = bsini->getSegment ();
    if (dss != NULL)
even's avatar
even committed
      bswidth = 1 + dss->width () / dss->period ();
even's avatar
even committed
  }
even's avatar
even committed

  // Finer detection based on gradient maxima with orientation constraint
  //---------------------------------------------------------------------
even's avatar
even committed
  bsf = bst2->fineTrack (bswidth, pCenter, bsinidir, 2 * bswidth, gRef);
even's avatar
even committed
  if (bsf == NULL || bsf->size () < bsMinSize)
  {
    resultValue = (bsf == NULL ? RESULT_FINAL_NO_DETECTION
                               : RESULT_FINAL_TOO_FEW);
    return;
  }

even's avatar
even committed
  // Length test
  //------------
  if (finalLengthTestOn)
  {
    DigitalStraightSegment *dss = bsf->getSegment ();
    if ((int) (bsf->getAllPoints().size ())
        < (3 * dss->width ()) / dss->period ())
    // if ((int) (bsf->getAllPoints().size ()) < 10)
    {
      resultValue = RESULT_FINAL_TOO_SPARSE;
      delete bsf;
      bsf = NULL;
      return;
    }
  }

  // New density test
  //-----------------
  if (finalDensityTestOn)
  {
    DigitalStraightLine mydsl (inip1, inip2, DigitalStraightLine::DSL_NAIVE);
    int mydrlf = mydsl.manhattan (bsf->getLastRight ())
                 - mydsl.manhattan (bsf->getLastLeft ());
    if (mydrlf < 0) mydrlf = -mydrlf; // Case of horizontal P1P2
    int expansion = 1 + mydrlf;
    if (expansion < 20 && bsf->size () < (expansion * 4) / 5)
    {
      resultValue = RESULT_FINAL_TOO_SPARSE;
      delete bsf;
      bsf = NULL;
      return;
    }
  }

even's avatar
even committed
  // Connected components analysis */
  //------------------------------*/
  if (ccOn)
  {
even's avatar
even committed
    int bsccp = bsf->countOfConnectedPoints (ccMinSize);
even's avatar
even committed
    int bssize = bsf->getAllPoints().size ();
    if (bsccp < bssize / 2)
    {
      resultValue = RESULT_FINAL_TOO_SPARSE;
      delete bsf;
      bsf = NULL;
      return;
    }
even's avatar
even committed

/*
    if (bssize < 20 || bsf->countOfConnectedComponents (bssize / 2) == 0)
    {
      resultValue = RESULT_FINAL_TOO_SPARSE;
      delete bsf;
      bsf = NULL;
      return;
    }
*/
even's avatar
even committed
  }

even's avatar
even committed
  // Line space filtering
  //---------------------
  if (filteringOn)
  {
    BlurredSegment *fbsf = lsf2->filter (bsf);
    if (fbsf != NULL)
    {
      resultValue = RESULT_FINAL_TOO_MANY_OUTLIERS;
      delete bsf;
      bsf = fbsf;
    }
  }

  resultValue = RESULT_OK;
}


even's avatar
even committed
BlurredSegment *BSDetector::getBlurredSegment (int step) const
{
  if (step == STEP_PRELIM) return (bspre);
  else if (step == STEP_INITIAL) return (bsini);
  else if (mbsf.empty ()) return (bsf);
  else return (mbsf.back ());
void BSDetector::incMaxDetections (bool dir)
{
  maxtrials = maxtrials + (dir ? -1 : 1);
  if (maxtrials < 0) maxtrials = (int) (mbsf.size ());
}


even's avatar
even committed
void BSDetector::getScanInput (int step,
                               Pt2i &p1, Pt2i &p2, int &swidth, Pt2i &pc) const
even's avatar
even committed
{
  if (step == STEP_PRELIM)
  {
    if (prelimDetectionOn)
    {
      p1.set (prep1);
      p2.set (prep2);
even's avatar
even committed
      swidth = prewidth;
even's avatar
even committed
      pc.set (prepc);
    }
  }
  else if (step == STEP_INITIAL)
  {
    p1.set (inip1);
    p2.set (inip2);
even's avatar
even committed
    swidth = iniwidth;
even's avatar
even committed
    pc.set (inipc);
  }
}


const vector <vector <Pt2i> > BSDetector::getFinalScans () const
{
  return (bst2->getScans ());
}


bool BSDetector::finalScansRecordOn () const
{
  return (bst2->scanRecordOn ());
}


void BSDetector::setFinalScansRecord (bool status)
{
  bst2->setScanRecord (status);
  if (status) redetect ();
}

even's avatar
even committed

void BSDetector::switchOrthoScans ()
{
even's avatar
even committed
  if (prelimDetectionOn) bst0->switchOrthoScans ();
even's avatar
even committed
  bst1->switchOrthoScans ();
  bst2->switchOrthoScans ();
}


vector<Pt2i> BSDetector::getRejected (int step) const
{
  vector<Pt2i> res;
even's avatar
even committed
  if (step == STEP_FINAL)
even's avatar
even committed
  {
even's avatar
even committed
    if (filteringOn) res = lsf2->getRejected ();
even's avatar
even committed
  }
even's avatar
even committed
  else if (prefilteringOn) res = lsf1->getRejected ();
even's avatar
even committed
  return res;
}


void BSDetector::switchFiltering (int step)
{
even's avatar
even committed
  if (step == STEP_FINAL)
even's avatar
even committed
  {
    filteringOn = ! filteringOn;
    if (filteringOn && lsf2 == NULL) lsf2 = new LineSpaceFilter ();
  }
even's avatar
even committed
  else if (step == STEP_INITIAL)
even's avatar
even committed
  {
    prefilteringOn = ! prefilteringOn;
    if (prefilteringOn && lsf1 == NULL) lsf1 = new LineSpaceFilter ();
  }
}


bool BSDetector::incConnectedComponentMinSize (bool increase)
{
even's avatar
even committed
  if ((! increase) && ccMinSize <= 1) return false;
  ccMinSize += (increase ? 1 : -1);
even's avatar
even committed
  return true;
}
even's avatar
even committed


void BSDetector::switchPreliminary ()
{
  if (prelimDetectionOn)
  {
    delete bst0;
    prelimDetectionOn = false;
  }
  else
  {
    prelimDetectionOn = true;
    bst0 = new BSTracker ();
    bst0->setGradientMap (gMap);
    if (bst1->orthoScansOn ()) bst0->switchOrthoScans ();
  }
}
Kerautret Bertrand's avatar
Kerautret Bertrand committed


std::string BSDetector::version ()
{
  return BSDetector::VERSION;
}