#include "BeoSub/HoughTransform.H"
#include "Image/Image.H"
#include "Image/Pixels.H"
#include "Util/Timer.H"
#include "Util/Types.H"
#include "Util/log.H"
#include "Image/ColorOps.H"
#include "Image/MathOps.H"
#include "Image/DrawOps.H"
#include "Image/FilterOps.H"
#include "Image/Transforms.H"
#include "Raster/Raster.H"
#include "rutz/shared_ptr.h"
#include "BeoSub/hysteresis.H"
#include "VFAT/segmentImageTrackMC.H"
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <math.h>
#include <list>
#include "Image/MatrixOps.H"
#include "BeoSub/CannyEdge.H"
#include "MBARI/Geometry2D.H"
Go to the source code of this file.
Functions | |
std::vector< LineSegment2D > | houghTransform (Image< byte > &inputImage, float thetaRes, float dRes, int threshold, Image< PixRGB< byte > > &output) |
find hough transform for an image
Definition in file HoughTransform.C.