GithubHelp home page GithubHelp logo

Comments (5)

ankit213 avatar ankit213 commented on July 29, 2024 3

I have used this library, I am creating body image using canvas then I am creating heat map using this library but heat map removed my original image , so please help me out.

Before Heat Map
pain_heatmap

After Heat Map
after_heatmap

from heatcanvas.

sunng87 avatar sunng87 commented on July 29, 2024 2

@ankit213 I guess your base image is rendered in the same canvas with the heatmap? It's overwrite by heatmap. Consider using a dedicated canvas for heatmap.

from heatcanvas.

sunng87 avatar sunng87 commented on July 29, 2024

Thanks for using HeatCanvas.

I think you can override the defaultValue2Color function to make your graph better rendered. Define your function and pass it to render as the third parameter. Due to limited use case, I don't have a "best" function that may work for you immediately.

I am getting pretty busy so I don't have enough time for this. If you have any catch when using HeatCanvas, feedback are welcomed. Thanks very much.

from heatcanvas.

AndyMason75 avatar AndyMason75 commented on July 29, 2024

I needed the same thing, didn't take long to figure out, try this:

 var heatmap = new 
                L.TileLayer.HeatCanvas({}, {
                    'step': 0.5,
                    'degree': HeatCanvas.LINEAR,
                    'opacity': 0.7,
                    'bgcolor': [255, 255, 255, 0],
                    'colorscheme': function(value) {
                        // create a steeper slope for alpha channel to get to full saturation quickly
                        var alpha = value * 4;
                        var alphaCeil = alpha > 1 ? 1 : alpha;
                        var h = (1 - value);
                        var l = 0.5;
                        var s = 1;
                        var a = alphaCeil;
                        return [h, s, l, a];
                    }
                });

You'll also have to implement passing 'bgcolor' through the leaflet helper to the base HeatCanvas otherwise you'll still get a semi-transparent black background.

from heatcanvas.

sidequestlegend avatar sidequestlegend commented on July 29, 2024

This is really quite old now but I found a neat way to get good results. The trick is to apply the value to the alpha channel.

image

               heatmap.bgcolor=[255, 255, 255, 0];
                var colorscheme = function(value){
                    var h = (1 - value);
                    var l = value * 0.6;
                    var s = 0.8;
                    var a = value * 0.98; // here is what i changed from the default
                    return [h, s, l, a];
                }
                heatmap.render(1/*step*/, 1/*degree*/, colorscheme);

play with the multiplier (0.98 in the above example) to get your desired alpha in the same way you change the step or degree.

from heatcanvas.

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.