#include <IMeanShiftOp.hpp>
Inheritance diagram for IMeanShiftOp:
Purpose: "Mean Shift Analysis and Applications", Dorin Comaniciu, P. Meer, Rutgers University 1999. .
@ Copyrights: Bernard De Cuyper & Eddy Fraiha 2002, Eggs & Pictures. MIT/Open BSD copyright model.
Public Methods | |
IMeanShiftOp (float sigmaS=8.0, float sigmaR=4.0, int iterMax=3) | |
virtual | ~IMeanShiftOp () |
virtual AnImage * | filter (AnImage *src, AnImage *dest=0) |
Local full image filtering. | |
virtual void | report (FILE *file) |
Protected Methods | |
virtual bool | greyWindow (AnImage *src, MsGreyPoint &yk1, MsGreyPoint &yk) |
virtual bool | rgbWindow (AnImage *src, Ms3ChannelPoint &yk1, Ms3ChannelPoint &yk) |
Protected Attributes | |
float | sigmaSpace |
float | sigmaRange |
int | s |
int | r |
int | d |
int | nmax |
int | w |
int | h |
|
Local full image filtering.
Implements AnImageOp. |