Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • gitkeep
  • dev protected
  • Hotfix/2133-metadataLoading
  • Hotfix/1969-fixedLinkedRetrieval
  • Sprint/2022-01
  • Issue/1804-fixedValueFix
  • Hotfix/1911-fixFormatting
  • Hotfix/1918-linkedLoading
  • Sprint/2021-24
  • Issue/1172-uploadProgress
  • Sprint/2021-22
  • Issue/43-saveButton
  • Issue/1762-renamingResourceTypes
  • Sprint/2021-18
  • Sprint/2021-20
  • Sprint/2021-16
  • Product/1552-correctFolders
  • Topic/1657-folderFix
  • Sprint/2021-15
  • v1.15.3
  • v1.15.2
  • v1.15.1
  • v1.15.0
  • v1.14.2
  • v1.14.1
  • v1.14.0
  • v1.13.0
  • v1.12.0
  • v1.11.0
  • v1.10.2
  • v1.10.1
  • v1.10.0
  • v1.9.2
  • v1.9.1
  • v1.9.0
  • v1.8.1
  • v1.8.0
  • v1.7.5
  • v1.7.4
40 results

.eslintrc.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    render_batch.sh 496 B
    #!/bin/zsh
    
    input_dir="/Users/brianwang/Downloads/ShapeNetCore.v2"
    output_dir="/Users/brianwang/Downloads/buffer"
    num_observations=10
    sphere_radius=1
    resolution=1080
    mode="train"
    
    rm -rf $output_dir
    mkdir $output_dir
    
    find "$input_dir" -name "*.obj" -print0 | xargs -0 -n1 -P1 -I {} blender -b --python shapenet_spherical_renderer.py -- --output_dir "$output_dir" --mesh_fpath "{}" --num_observations "$num_observations" --sphere_radius "$sphere_radius" --resolution="$resolution" --mode="$mode"