(self, n_frame: int, height: int, width: int,
rnd_state: np.random.RandomState)
| 418 | self.frame_grading_arr = np.arange(frame_grading_num) * 4 + 1 |
| 419 | |
| 420 | def __call__(self, n_frame: int, height: int, width: int, |
| 421 | rnd_state: np.random.RandomState) -> Any: |
| 422 | tgt_h, tgt_w = self.preprocess(n_frame, height, width, rnd_state) |
| 423 | flop = FlopEstimator2D1DNotExact(n_frame, tgt_h, tgt_w, |
| 424 | self.pixel_grading_arr, |
| 425 | self.frame_grading_arr) |
| 426 | return flop |
nothing calls this directly
no test coverage detected