Code Monkey home page Code Monkey logo

Comments (7)

littlePrince126 avatar littlePrince126 commented on July 23, 2024

I meet the same bug. If there has any update, please tell me ASAP. Thanks a lot!

from deeplabv3plus-pytorch.

KOOKOKOK avatar KOOKOKOK commented on July 23, 2024

I meet the same bug. If there has any update, please tell me ASAP. Thanks a lot!

from network import *
from torchvision.transforms.transforms import *
from datasets.cityscapes import *

val_transform = Compose([
ToTensor(),
Normalize(mean=[0.485, 0.456, 0.406],
std=[0.229, 0.224, 0.225]),
])
device = torch.device('cuda' if torch.cuda.is_available() else 'cpu')
model_path = 'checkpoints/latest_deeplabv3_resnet50_cityscapes_os16.pth'
model = deeplabv3_resnet50(num_classes=19,output_stride=16)

model.load_state_dict(torch.load(model_path)['model_state'])
model.to(device)
model.eval()

img_path = 'results/4_image.png'
image = Image.open(img_path).convert('RGB')
input = cv2.cvtColor(np.asarray(image),cv2.COLOR_RGB2BGR)
if name == 'main':
import torch

cv2.namedWindow('',0)

model_dict = torch.load(model_path)
test_input = val_transform(image).unsqueeze(dim=0)
test_input = test_input.to(device)
print('输入图像:',test_input.size())
output =model(test_input).cpu().detach().clone()
print('输出:',output.size())

preds = output.max(dim=1)[1].numpy()
print(preds)
pred = preds[0]
pred = Cityscapes.decode_target(pred).astype(np.uint8)
cv2.imshow('',pred)

cv2.waitKey(0)

from deeplabv3plus-pytorch.

KOOKOKOK avatar KOOKOKOK commented on July 23, 2024

问题已解决 haha!

from deeplabv3plus-pytorch.

KOOKOKOK avatar KOOKOKOK commented on July 23, 2024

from deeplabv3plus-pytorch.

XGBoost avatar XGBoost commented on July 23, 2024

楼上是怎么解决的?

from deeplabv3plus-pytorch.

XGBoost avatar XGBoost commented on July 23, 2024

@KOOKOKOK

from deeplabv3plus-pytorch.

cm0561 avatar cm0561 commented on July 23, 2024

问题已解决 haha!

大哥 请问作者的代码 更新解决了这个问题没?若解决 请告知 万分感谢 万分感谢!!!

from deeplabv3plus-pytorch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.