/raster_triangle

A simple renderer with z-buffer for synthesis data generating.

Primary LanguagePython

Raster Triangle

This is a simple renderer with z-buffer for synthesis data generating. With an input mesh and its pose, the rendered RGB and depth map are generated. It has been applied to PVN3D.

Installation

Compile the source code by

chmod +x ./rastertriangle_so.sh
./rastertriangle_so.sh

Datasets:

  • Download the LineMOD dataset from here. Unzip it and link the unzipped folder to this folder:
    ln -s path_to_Linemod_preprocessed ./Linemod_preprocessed
  • Download SUN2012pascalformat dataset from here. Unzip it and link the unzipped folder to this folder:
    ln -s path_to_SUN2012pascalformat ./

Generate synthesis data

  • Generate rendered data. Sampled poses for each object are provided in sampled_poses/, which are generated by scripts here. Run the following command to generate rendered data:

    python3 rgbd_renderer.py --help
    python3 rgbd_renderer.py --cls ape --render_num 70000

    Example rendered images are as follows: render0 render1

  • Run the following command to generate fusing data:

    python3 fuse.py --help
    python3 generate_fusing_data.py --cls ape --fuse_num 10000

    Example fused images are as follows: fuse0 fuse1