mirror of
https://bitbucket.org/cosmicvoids/vide_public.git
synced 2025-07-04 15:21:11 +00:00
11 lines
271 B
C++
11 lines
271 B
C++
#ifndef __CONTOUR_PIXELS_HPP
|
|
#define __CONTOUR_PIXELS_HPP
|
|
|
|
#include <vector>
|
|
#include <healpix_map.h>
|
|
|
|
|
|
void computeContourPixels(Healpix_Map<float>& map, std::vector<int>& contour);
|
|
void computeFilledPixels(Healpix_Map<float>& map, std::vector<int>& contour);
|
|
|
|
#endif
|