0% found this document useful (0 votes)
57 views

Message

This document contains code to load 3D model files in the OBJ format using two different libraries - fast_obj and tiny_obj_loader. It loads a sample OBJ file using each library, compares the loaded data to check they are equivalent, and prints the load times. The code is released under the MIT license and copyright is assigned to Richard Knight.

Uploaded by

Amanda Putri
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
57 views

Message

This document contains code to load 3D model files in the OBJ format using two different libraries - fast_obj and tiny_obj_loader. It loads a sample OBJ file using each library, compares the loaded data to check they are equivalent, and prints the load times. The code is released under the MIT license and copyright is assigned to Richard Knight.

Uploaded by

Amanda Putri
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

/*

*
* MIT License
*
* Copyright (c) 2018 Richard Knight
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*/

#define FAST_OBJ_IMPLEMENTATION
#include "fast_obj.h"

#define TINYOBJLOADER_IMPLEMENTATION
#include "tiny_obj_loader.h"

#include <chrono>

using namespace tinyobj;

struct tinyObj
{
attrib_t attrib;
std::vector<shape_t> shapes;
std::vector<material_t> materials;
};

static
bool read_tiny_obj(const char* path, tinyObj* o)
{
std::string err;
std::string warn;
return LoadObj(&o->attrib, &o->shapes, &o->materials, &warn, &err, path, 0,
false);
}

static
void check(bool c, const char* m)
{
if (!c)
printf("CHECK FAILED : %s\n", m);
}

#define CHECK(_c) check(_c, #_c)

static
void compare_mesh(fastObjMesh* m, tinyObj* o)
{
CHECK(m->group_count == o->shapes.size());

for (unsigned int ii = 0; ii < m->group_count; ii++)


{
const fastObjGroup& grp = m->groups[ii];
const shape_t& shp = o->shapes[ii];

std::string grp_name;
if (grp.name)
grp_name = std::string(grp.name);

CHECK(shp.name == grp_name);
CHECK(shp.mesh.num_face_vertices.size() == grp.face_count);

int idx = 0;
for (unsigned int jj = 0; jj < grp.face_count; jj++)
{
unsigned int fv = m->face_vertices[grp.face_offset + jj];

CHECK(shp.mesh.num_face_vertices[jj] == fv);

for (unsigned int kk = 0; kk < fv; kk++)


{
index_t oi = shp.mesh.indices[idx];
fastObjIndex mi = m->indices[grp.index_offset + idx];

CHECK(oi.vertex_index + 1 == mi.p);
CHECK(oi.texcoord_index + 1 == mi.t);
CHECK(oi.normal_index + 1 == mi.n);

if (mi.p)
{
CHECK(o->attrib.vertices[3 * oi.vertex_index + 0] == m-
>positions[3 * mi.p + 0]);
CHECK(o->attrib.vertices[3 * oi.vertex_index + 1] == m-
>positions[3 * mi.p + 1]);
CHECK(o->attrib.vertices[3 * oi.vertex_index + 2] == m-
>positions[3 * mi.p + 2]);
}

if (mi.t)
{
CHECK(o->attrib.texcoords[2 * oi.texcoord_index + 0] == m-
>texcoords[2 * mi.t + 0]);
CHECK(o->attrib.texcoords[2 * oi.texcoord_index + 1] == m-
>texcoords[2 * mi.t + 1]);
}

if (mi.n)
{
CHECK(o->attrib.normals[3 * oi.normal_index + 0] == m-
>normals[3 * mi.n + 0]);
CHECK(o->attrib.normals[3 * oi.normal_index + 1] == m-
>normals[3 * mi.n + 1]);
CHECK(o->attrib.normals[3 * oi.normal_index + 2] == m-
>normals[3 * mi.n + 2]);
}

idx++;
}
}
}
}

int main(int argc, const char* argv[])


{
if (argc != 2)
{
printf("%s <obj file>\n", argv[0]);
return -1;
}

printf("Reading with fast_obj\n");

auto fast_start = std::chrono::high_resolution_clock::now();

fastObjMesh* m = fast_obj_read("/Users/azkakusumaedy/Documents/Kuliah/ Materi


dan Tugas/Semester 3/GrafKOm/turtuleProject/10042_Sea_Turtle_V1_L3.123c708c1821-
ff1e-470c-a557-b57441fbf771/10042_Sea_Turtle_V2_iterations-2.obj");

auto fast_end = std::chrono::high_resolution_clock::now();


std::chrono::duration<double> fast_time = fast_end - fast_start;

if (!m)
{
printf("Failed!\n");
return -1;
}

printf("Took %0.2f secs\n", fast_time.count());

printf("Reading with tiny_obj_loader\n");


tinyObj o;

auto tiny_start = std::chrono::high_resolution_clock::now();

bool success = read_tiny_obj(argv[1], &o);

auto tiny_end = std::chrono::high_resolution_clock::now();


std::chrono::duration<double> tiny_time = tiny_end - tiny_start;

if (!success)
{
printf("Failed!\n");
return -1;
}
printf("Took %0.2f secs\n", tiny_time.count());

printf("Comparing...\n");
compare_mesh(m, &o);

printf("Done\n");

fast_obj_destroy(m);

return 0;
}

You might also like