manycore-research / PlankAssembly

[ICCV 2023] PlankAssembly: Robust 3D Reconstruction from Three Orthographic Views with Learnt Shape Programs
https://manycore-research.github.io/PlankAssembly/
GNU Affero General Public License v3.0
61 stars 6 forks source link

use SVG files as input #7

Closed SanketDhuri closed 5 months ago

SanketDhuri commented 5 months ago

I aim to input SVG files representing the top, bottom, and side orthographic projections of an object. I want to transform these SVG files into a data format suitable for model input data, to reconstruct 3d model

can you give me code reference to do so

bertjiazheng commented 5 months ago

Please refer to parse_info.py to convert the SVGs into the desired format.

SanketDhuri commented 5 months ago

and how to create this infos['planks'] and infos['attach'] data for this line of code coords = np.array(infos['planks']) / args.scale since this coords and attach data is needed in json file

considering this 'f', 't', 's' view are new svg images

bertjiazheng commented 5 months ago

planks and attach are the expected outputs. You may ignore them if you do not have the ground truth. However, you need to modify the dataset to exclude ground truth during inference.

SanketDhuri commented 5 months ago

planks and attach are the expected outputs. You may ignore them if you do not have the ground truth. However, you need to modify the dataset to exclude ground truth during inference.

thanks @bertjiazheng it worked