Giter VIP home page Giter VIP logo

Comments (4)

rongliangzi avatar rongliangzi commented on August 16, 2024

Hi! Here is my codes to visualize the estimated density map:

dm = outputs.squeeze().detach().cpu().numpy()
plt.imshow(dm, cmap=CM.jet)
plt.savefig(save_path)

from bayesian-crowd-counting.

ZhihengCV avatar ZhihengCV commented on August 16, 2024

The visualization code is right, but in the paper, we normalize output by its max value for better visualization.

from bayesian-crowd-counting.

d6h2p avatar d6h2p commented on August 16, 2024

你好,这样可视化是否正确?
dm = outputs.squeeze().detach().cpu().numpy()

dm_normalized = dm / np.max(dm)

plt.imshow(dm_normalized, cmap=cm.jet, vmin=0, vmax=1)

i += 1

plt.savefig("./image/{}.png".format(i))

from bayesian-crowd-counting.

LOVEISI avatar LOVEISI commented on August 16, 2024

你好!这是我可视化估计密度图的代码:

dm = outputs.squeeze().detach().cpu().numpy()
plt.imshow(dm, cmap=CM.jet)
plt.savefig(save_path)

你好!请问这段代码是加在test.py后面吗

from bayesian-crowd-counting.

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.