Bladeren bron

autoshape() update for PIL greyscale inputs (#1279)

* autoshape update for PIL greyscale inputs

* autoshape update for PIL greyscale inputs
5.0
Glenn Jocher GitHub 3 jaren geleden
bovenliggende
commit
15a10609fe
Geen bekende sleutel gevonden voor deze handtekening in de database GPG sleutel-ID: 4AEE18F83AFDEB23
1 gewijzigde bestanden met toevoegingen van 3 en 1 verwijderingen
  1. +3
    -1
      models/common.py

+ 3
- 1
models/common.py Bestand weergeven

@@ -1,6 +1,7 @@
# This file contains modules common to various models

import math

import numpy as np
import torch
import torch.nn as nn
@@ -144,7 +145,8 @@ class autoShape(nn.Module):
shape0, shape1 = [], [] # image and inference shapes
batch = range(len(x)) # batch size
for i in batch:
x[i] = np.array(x[i])[:, :, :3] # up to 3 channels if png
x[i] = np.array(x[i]) # to numpy
x[i] = x[i][:, :, :3] if x[i].ndim == 3 else np.tile(x[i][:, :, None], 3) # enforce 3ch input
s = x[i].shape[:2] # HWC
shape0.append(s) # image shape
g = (size / max(s)) # gain

Laden…
Annuleren
Opslaan