renamed references to the filter_clean stuff

This commit is contained in:
Paolo Cignoni cignoni 2008-12-11 09:44:55 +00:00
parent 14eb1715ec
commit a565e814b0
2 changed files with 3 additions and 3 deletions

View File

@ -121,7 +121,7 @@
#include <vcg/complex/trimesh/hole.h>
#include <wrap/io_trimesh/io_mask.h>
#include <wrap/io_trimesh/export_ply.h>
#include "../cleanfilter/remove_small_cc.h"
#include "../filter_clean/remove_small_cc.h"
#include <meshlab/alnParser.h>
FILE *logFP=0;

View File

@ -59,7 +59,7 @@ public:
{
Eroded.resize(w,h);
// erosion filter (3 x 3)
int minimum;
float minimum;
for (int y = wsize; y < h-wsize; y++)
for (int x = wsize; x < w-wsize; x++)
{
@ -77,7 +77,7 @@ public:
{
Dilated.resize(w,h);
// dilation filter (3 x 3)
int maximum;
float maximum;
for (int y = wsize; y < h-wsize; y++)
for (int x = wsize; x < w-wsize; x++)
{