Poor quality along UV Seams

#3
by easymode2 - opened

Poor quality along UV Seams, are you looking to improve on this in a future release?

Great model, been fun to work with locally.

Thank you.

Additionally,

I was able to extend on your implementation of geo+mv2tex, and the results are fantastic:

                case "geo+mv2tex":
                    min_frames = 4
                    timestep_df[:, :min_frames] = self.min_noise_level_timestep
                    sigmas[:, :, :min_frames, ...] = self.min_noise_level_sigma

                    mv_noise = randn_tensor(mv_latents[:, :, :min_frames].shape, generator=generator, device=device, dtype=self.dtype)
 
                    for idx, cond_img in enumerate(gt_condition):
                        frame_idx = idx
                        mv_latents[:, :, frame_idx:frame_idx+1, ...] = (
                            (1.0 - sigmas[:, :, frame_idx:frame_idx+1, ...]) * cond_img +
                            sigmas[:, :, frame_idx:frame_idx+1, ...] * mv_noise[:, :, frame_idx:frame_idx+1, ...]
                        )

The following shows an implementation in ComfyUI with 4 images generated by the Normals and fed back as MV Images into the pipeline, with the above code, the results are as follow:

image.png

Please see our repository for our ComfyUI Wrapper here:
https://github.com/Rizzlord/ComfyUI-SeqTex

Sign up or log in to comment