lowlands ( Image : Lowlands : : )

Detect all gray value lowlands.

lowlands extracts all points from Image with a gray value less or equal to the gray value of its neighbors (8-neighborhood) and returns them in Lowlands. Each lowland is returned as a separate region.


Parameters

Image (input_object)
image(-array) -> object : byte / direction / cyclic / int1 / int2 / uint2 / int4 / real
Image to be processed.

Lowlands (output_object)
region-array -> object
Extracted lowlands as regions (one region for each lowland).


Example (Syntax: C++)
#include "HIOStream.h"
#if !defined(USE_IOSTREAM_H)
using namespace std;
#endif
#include "HalconCpp.h"

int main (int argc, char *argv[])
{
  if (argc != 2)
  {
    cout << "Usage : " << argv[0] << " <name of image>" << endl;
    return (-1);
  }

  HImage   image (argv[1]);
  HWindow  win;

  image.Display (win);

  HImage       cres = image.CornerResponse (5, 0.04);
  HRegionArray mins = cres.Lowlands ();

  win.SetColored (12);
  mins.Display (win);
  win.Click ();

  return (0);
}

Parallelization Information

lowlands is reentrant and automatically parallelized (on tuple level).


Possible Predecessors

gauss_image, smooth_image


Possible Successors

area_center, get_region_points, select_shape


Alternatives

lowlands_center, gray_skeleton, local_min


See also

monotony, topographic_sketch, corner_response, texture_laws


Module

Foundation



Copyright © 1996-2008 MVTec Software GmbH