File: far_regression.cpp

package info (click to toggle)
opensubdiv 3.6.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 75,132 kB
  • sloc: cpp: 137,820; python: 1,069; objc: 412; javascript: 361; lisp: 216; ansic: 170; makefile: 24
file content (375 lines) | stat: -rw-r--r-- 12,769 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
//
//   Copyright 2013 Pixar
//
//   Licensed under the Apache License, Version 2.0 (the "Apache License")
//   with the following modification; you may not use this file except in
//   compliance with the Apache License and the following modification to it:
//   Section 6. Trademarks. is deleted and replaced with:
//
//   6. Trademarks. This License does not grant permission to use the trade
//      names, trademarks, service marks, or product names of the Licensor
//      and its affiliates, except as required to comply with Section 4(c) of
//      the License and to reproduce the content of the NOTICE file.
//
//   You may obtain a copy of the Apache License at
//
//       http://www.apache.org/licenses/LICENSE-2.0
//
//   Unless required by applicable law or agreed to in writing, software
//   distributed under the Apache License with the above modification is
//   distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
//   KIND, either express or implied. See the Apache License for the specific
//   language governing permissions and limitations under the Apache License.
//

#include <cassert>
#include <cstdio>


#include "../../regression/common/hbr_utils.h"
#include "../../regression/common/far_utils.h"
#include "../../regression/common/cmp_utils.h"

#include "init_shapes.h"

//
// Regression testing matching Far to Hbr (default CPU implementation)
//
// Notes:
// - precision is currently held at 1e-6
//
// - results cannot be bitwise identical as some vertex interpolations
//   are not happening in the same order.
//
// - only vertex interpolation is being tested at the moment.
//
#define PRECISION 1e-6

static bool g_debugmode = false;

//------------------------------------------------------------------------------
// Vertex class implementation
struct xyzVV {

    xyzVV() { /* _pos[0]=_pos[1]=_pos[2]=0.0f; */ }

    xyzVV( int /*i*/ ) { }

    xyzVV( float x, float y, float z ) { _pos[0]=x; _pos[1]=y; _pos[2]=z; }

    xyzVV( const xyzVV & src ) { _pos[0]=src._pos[0]; _pos[1]=src._pos[1]; _pos[2]=src._pos[2]; }

   ~xyzVV( ) { }

    void AddWithWeight(const xyzVV& src, float weight) {
        _pos[0]+=weight*src._pos[0];
        _pos[1]+=weight*src._pos[1];
        _pos[2]+=weight*src._pos[2];
    }

    void AddVaryingWithWeight(const xyzVV& , float) { }

    void Clear( void * =0 ) { _pos[0]=_pos[1]=_pos[2]=0.0f; }

    void SetPosition(float x, float y, float z) { _pos[0]=x; _pos[1]=y; _pos[2]=z; }

    void ApplyVertexEdit(const OpenSubdiv::HbrVertexEdit<xyzVV> & edit) {
        const float *src = edit.GetEdit();
        switch(edit.GetOperation()) {
          case OpenSubdiv::HbrHierarchicalEdit<xyzVV>::Set:
            _pos[0] = src[0];
            _pos[1] = src[1];
            _pos[2] = src[2];
            break;
          case OpenSubdiv::HbrHierarchicalEdit<xyzVV>::Add:
            _pos[0] += src[0];
            _pos[1] += src[1];
            _pos[2] += src[2];
            break;
          case OpenSubdiv::HbrHierarchicalEdit<xyzVV>::Subtract:
            _pos[0] -= src[0];
            _pos[1] -= src[1];
            _pos[2] -= src[2];
            break;
        }
    }

    void ApplyMovingVertexEdit(const OpenSubdiv::HbrMovingVertexEdit<xyzVV> &) { }

    const float * GetPos() const { return _pos; }

    bool operator==(xyzVV const & other) const {
        if (_pos[0]==other._pos[0] &&
            _pos[1]==other._pos[1] &&
            _pos[2]==other._pos[2]) {
            return true;
        }
        return false;
    }

private:
    float _pos[3];
};

//------------------------------------------------------------------------------
typedef OpenSubdiv::HbrMesh<xyzVV>           Hmesh;

//------------------------------------------------------------------------------
typedef OpenSubdiv::Sdc::Options                       SdcOptions;
typedef OpenSubdiv::Far::TopologyLevel                 FarTopologyLevel;
typedef OpenSubdiv::Far::TopologyRefiner               FarTopologyRefiner;
typedef OpenSubdiv::Far::TopologyRefinerFactory<Shape> FarTopologyRefinerFactory;

//------------------------------------------------------------------------------
#ifdef foo
static void
printVertexData(std::vector<xyzVV> const & hbrBuffer, std::vector<xyzVV> const & farBuffer) {

    assert(hbrBuffer.size()==farBuffer.size());
    for (int i=0; i<(int)hbrBuffer.size(); ++i) {

        float const * hbr = hbrBuffer[i].GetPos(),
                    * far = farBuffer[i].GetPos();

        printf("%3d %d (%f %f %f) (%f %f %f)\n", i, hbrBuffer[i]==farBuffer[i],
                                                    hbr[0], hbr[1], hbr[2],
                                                    far[0], far[1], far[2]);
    }
}
#endif

//------------------------------------------------------------------------------
static int
compareVertexData(std::vector<xyzVV> const& farVertexData, std::vector<xyzVV> const& hbrVertexData) {

    int count=0;
    float deltaAvg[3] = {0.0f, 0.0f, 0.0f},
          deltaCnt[3] = {0.0f, 0.0f, 0.0f};

    int nverts = (int)farVertexData.size();

    for (int i=0; i<nverts; ++i) {

        xyzVV const & hbrVert = hbrVertexData[i];
        xyzVV const & farVert = farVertexData[i];

#ifdef __INTEL_COMPILER // remark #1572: floating-point equality and inequality comparisons are unreliable
#pragma warning disable 1572
#endif
        if ( hbrVert.GetPos()[0] != farVert.GetPos()[0] )
            deltaCnt[0]++;
        if ( hbrVert.GetPos()[1] != farVert.GetPos()[1] )
            deltaCnt[1]++;
        if ( hbrVert.GetPos()[2] != farVert.GetPos()[2] )
            deltaCnt[2]++;
#ifdef __INTEL_COMPILER
#pragma warning enable 1572
#endif
        float delta[3] = { hbrVert.GetPos()[0] - farVert.GetPos()[0],
                           hbrVert.GetPos()[1] - farVert.GetPos()[1],
                           hbrVert.GetPos()[2] - farVert.GetPos()[2] };

        deltaAvg[0]+=delta[0];
        deltaAvg[1]+=delta[1];
        deltaAvg[2]+=delta[2];

        float dist = sqrtf( delta[0]*delta[0]+delta[1]*delta[1]+delta[2]*delta[2]);
        if ( dist > PRECISION ) {
            if (! g_debugmode)
                printf("// HbrVertex<T> %d fails : dist=%.10f (%.10f %.10f %.10f)"
                       " (%.10f %.10f %.10f)\n", i, dist, hbrVert.GetPos()[0],
                                                          hbrVert.GetPos()[1],
                                                          hbrVert.GetPos()[2],
                                                          farVert.GetPos()[0],
                                                          farVert.GetPos()[1],
                                                          farVert.GetPos()[2] );
           count++;
        }
    }

    if (deltaCnt[0])
        deltaAvg[0]/=deltaCnt[0];
    if (deltaCnt[1])
        deltaAvg[1]/=deltaCnt[1];
    if (deltaCnt[2])
        deltaAvg[2]/=deltaCnt[2];

    if (! g_debugmode) {
        printf("  delta ratio : (%d/%d %d/%d %d/%d)\n", (int)deltaCnt[0], nverts,
                                                        (int)deltaCnt[1], nverts,
                                                        (int)deltaCnt[2], nverts );
        printf("  average delta : (%.10f %.10f %.10f)\n", deltaAvg[0],
                                                          deltaAvg[1],
                                                          deltaAvg[2] );
        if (count==0)
            printf("  success !\n");
    }
    return count;
}

static int
compareVerticesWithHbr(Shape const & shape,
                       FarTopologyRefiner const & refiner,
                       std::vector<xyzVV> const& farVertexData) {

    std::vector<xyzVV> hbrVertexData;

    Hmesh * hmesh = interpolateHbrVertexData<xyzVV>(&shape, refiner.GetMaxLevel());

    // copy Hbr vertex data into a re-ordered buffer (for easier comparison)
    GetReorderedHbrVertexData(refiner, *hmesh, &hbrVertexData);

    // compare and report differences in vertex positions
    return compareVertexData(farVertexData, hbrVertexData);
}

static bool
isBaseMeshNonManifold(FarTopologyRefiner const & refiner) {

    // Some simpler inspection methods of the RefinerLevel would help here...
    //   - vertices and edges are internally tagged as manifold or not

    FarTopologyLevel const & level = refiner.GetLevel(0);

    int nVerts = level.GetNumVertices();
    for (int i = 0; i < nVerts; ++i) {
        int nVertFaces = level.GetVertexFaces(i).size();
        int nVertEdges = level.GetVertexEdges(i).size();
        int nEdgesMinusFaces = nVertEdges - nVertFaces;
        if ((nEdgesMinusFaces > 1) || (nEdgesMinusFaces < 0)) {
            return true;
        }
    }

    int nEdges = level.GetNumEdges();
    for (int i = 0; i < nEdges; ++i) {
        int nEdgeFaces = level.GetEdgeFaces(i).size();
        if ((nEdgeFaces < 1) || (nEdgeFaces > 2)) {
            return true;
        }
        if (level.GetEdgeVertices(i)[0] == level.GetEdgeVertices(i)[1]) {
            return true;
        }
    }
    return false;
}

static bool
shapeHasHierarchicalEditTags(Shape const & shape) {

    for (int i = 0; i < (int)shape.tags.size(); ++i) {
        Shape::tag const & tag = *shape.tags[i];

        if ((tag.name == "vertexedit") || (tag.name == "edgeedit") || (tag.name == "faceedit")) {
            return true;
        }
    }
    return false;
}

static bool
areVerticesCompatibleWithHbr(Shape const & shape, FarTopologyRefiner const & refiner,
                             std::string * incompatibleString = 0)
{
    //
    // Known incompatibilities with Hbr:
    //   - non-manifold features -- Hbr does not support them
    //   - very high-valence vertex -- accumulation of Hbr inaccuracies becomes considerable
    //   - Chaikin creasing -- Hbr known to be incorrect
    //   - hierarchical edits -- not supported by FarTopologyRefiner
    //       - Shape will include tags "vertexedit", "edgeedit" and "faceedit"
    //
    if (isBaseMeshNonManifold(refiner)) {
        if (incompatibleString) {
            *incompatibleString = std::string("mesh is non-manifold");
        }
        return false;
    }
    if (refiner.GetMaxValence() > 64) {
        if (incompatibleString) {
            *incompatibleString = std::string("vertices of excessively high valence present");
        }
        return false;
    }
    if (refiner.GetSchemeOptions().GetCreasingMethod() == SdcOptions::CREASE_CHAIKIN) {
        if (incompatibleString) {
            *incompatibleString = std::string("assigned crease method is Chaikin");
        }
        return false;
    }
    if (shape.isLeftHanded) {
        if (incompatibleString) {
            *incompatibleString = std::string("mesh is left-handed");
        }
        return false;
    }
    if (shapeHasHierarchicalEditTags(shape)) {
        if (incompatibleString) {
            *incompatibleString = std::string("hierarchical edits no longer supported");
        }
        return false;
    }
    return true;
}

//------------------------------------------------------------------------------
static int
checkMesh(Shape const & shape, std::string const& name, int maxlevel) {

    std::string warningDetail;

    static char const * schemes[] = { "Bilinear", "Catmark", "Loop" };
    printf("- %-25s ( %-8s ): \n", name.c_str(), schemes[shape.scheme]);

    // Refine and interpolate vertex data for every shape:
    std::vector<xyzVV> farVertexData;

    FarTopologyRefiner * refiner = InterpolateFarVertexData<xyzVV>(shape, maxlevel, farVertexData);

    // Perform relevant tests and accumulate failures:
    int failureCount = 0;

    if (areVerticesCompatibleWithHbr(shape, *refiner, &warningDetail)) {
        failureCount = compareVerticesWithHbr(shape, *refiner, farVertexData);
    } else {
        printf("  warning : vertex data not compared with Hbr (%s)\n", warningDetail.c_str());
    }

    return failureCount;
}

//------------------------------------------------------------------------------
int main(int /* argc */, char ** /* argv */) {

    int levels=5, total=0;

    initShapes();

    if (g_debugmode)
        printf("[ ");
    else
        printf("precision : %f\n",PRECISION);

    for (int i=0; i<(int)g_shapes.size(); ++i) {
        ShapeDesc const & desc = g_shapes[i];

        Shape * shape = Shape::parseObj(desc);
        if (shape) {
            // May want to inspect and/or modify the shape before proceeding...

            total+=checkMesh(*shape, desc.name, levels);
        }
        delete shape;
    }

    if (g_debugmode)
        printf("]\n");
    else {
        if (total==0)
          printf("All tests passed.\n");
        else
          printf("Total failures : %d\n", total);
    }
}

//------------------------------------------------------------------------------