InternLandMark / LandMark

Other
441 stars 39 forks source link

Once the model is trained and rendered, how do you view the results? #14

Closed Blackkkk07 closed 1 year ago

Blackkkk07 commented 1 year ago

@kam1107 @zyfhaha @taomiao @eveneveno @Saaaaln After rendering is complete, there are only four images and one txt file in the imgs_test_all folder

Saaaaln commented 1 year ago

Hi, to render all the images, you could use the following code interval = 1 if self.N_vis < 0 else max(N // self.N_vis, 1) test_idx = list(range(0, N, interval)) to replace test_idx = list(range(0, N, self.N_vis)).

And then, set N_vis = -1 to rendering all images. Also, you could set generate_videos = 1 to generate videos.

Blackkkk07 commented 1 year ago

Ok, I'll try. Thank you for your answer