ISVI icon indicating copy to clipboard operation
ISVI copied to clipboard

taking long time to test compared to FGT

Open smandava98 opened this issue 10 months ago • 2 comments

Hi @hitachinsk! Firstly, great work and am very impressed. I liked the performance of ISVI as compared to FGT however I noticed that (for a video of only 60 frames), ISVI is taking over an hour on an A100 80 GB GPU whereas FGT takes just a few minutes.

The issue is mainly in the backward flow where it is interpolating and filling in the missed pixels. E.g:

for indFrame in range(nFrame):
        # Index of missing pixel whose backward flow neighbor is from frame indFrame
        SourceFmInd = np.where(flowNN[:, 2, 0] == indFrame)

        print("{0:8d} pixels are from source Frame {1:3d}"
                        .format(len(SourceFmInd[0]), indFrame))
        # The location of the missing pixel whose backward flow neighbor is
        # from frame indFrame flowNN[SourceFmInd, 0, 0], flowNN[SourceFmInd, 1, 0]

        if len(SourceFmInd[0]) != 0:

Can you help me resolve this please?

smandava98 avatar Sep 05 '23 07:09 smandava98