This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| pkg load image; | |
| function im_density = get_density_map_gaussian(im,points) | |
| im_density = zeros(size(im)); | |
| [h,w] = size(im_density); | |
| if(length(points)==0) | |
| return; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function im_density = get_density_map_gaussian(im,points) | |
| pkg load image; | |
| im_density = zeros(size(im)); | |
| [h,w] = size(im_density); | |
| if(length(points)==0) | |
| return; | |
| end |
NewerOlder