├── .Rbuildignore ├── .github └── workflows │ └── main.yml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── RcppExports.R ├── profoundAperPhot.R ├── profoundApplyMask.R ├── profoundAutoMerge.R ├── profoundDiscoSky.R ├── profoundEllipse.R ├── profoundFitMagPSF.R ├── profoundFluxDeblend.R ├── profoundHotFuzz.R ├── profoundMultiBand.R ├── profoundPixelCorrelation.R ├── profoundProFound.R ├── profoundSegim.R ├── profoundSegimFix.R ├── profoundSky.R ├── profoundUtility.R └── this_in_that.R ├── README.md ├── data └── FPtest.rda ├── inst ├── CITATION └── extdata │ ├── IRdata │ ├── p100_im.fits │ ├── p100_psf.fits │ ├── p160_im.fits │ ├── p160_psf.fits │ ├── s250_im.fits │ ├── s250_psf.fits │ ├── s350_im.fits │ ├── s350_psf.fits │ ├── s500_im.fits │ └── s500_psf.fits │ ├── MultiBand │ ├── H.fits │ ├── J.fits │ ├── Ks.fits │ ├── Y.fits │ ├── Z.fits │ ├── g.fits │ ├── i.fits │ ├── r.fits │ └── u.fits │ └── VIKING │ └── mystery_VIKING_Z.fits ├── man ├── FPtest.Rd ├── plot.fitmagpsf.Rd ├── plot.profound.Rd ├── profoundAperPhot.Rd ├── profoundApplyMask.Rd ├── profoundAutoMerge.Rd ├── profoundCatMerge.Rd ├── profoundChisel.Rd ├── profoundCover.Rd ├── profoundDiscoSky.Rd ├── profoundDrawEllipse.Rd ├── profoundEllipseSeg.Rd ├── profoundFitMagPSF.Rd ├── profoundFlux2Mag.Rd ├── profoundFluxDeblend.Rd ├── profoundGainConvert.Rd ├── profoundGainEst.Rd ├── profoundGetEllipse.Rd ├── profoundGetEllipses.Rd ├── profoundGetEllipsesPlot.Rd ├── profoundHotFuzz.Rd ├── profoundImBlur.Rd ├── profoundMag2Mu.Rd ├── profoundMakeSegim.Rd ├── profoundMakeSegimExpand.Rd ├── profoundMakeSegimPropogate.Rd ├── profoundMakeSigma.Rd ├── profoundMakeSkyMap.Rd ├── profoundMultiBand.Rd ├── profoundPixelCorrelation.Rd ├── profoundProFound.Rd ├── profoundResample.Rd ├── profoundSegimCompare.Rd ├── profoundSegimEdge.Rd ├── profoundSegimExtend.Rd ├── profoundSegimFix.Rd ├── profoundSegimGroup.Rd ├── profoundSegimKeep.Rd ├── profoundSegimMerge.Rd ├── profoundSegimNear.Rd ├── profoundSegimStats.Rd ├── profoundShareFlux.Rd ├── profoundSkyEst.Rd ├── profoundSkyEstLoc.Rd ├── profoundSkyPoly.Rd ├── profoundSkyScan.Rd ├── profoundZapSegID.Rd ├── this_in_that.Rd └── water_cpp.Rd ├── src ├── Array2.h ├── IntpAkimaUniform2.h ├── Makevars ├── RcppExports.cpp ├── akima.cpp ├── akima.h ├── aper_cover.cpp ├── dilate.cpp ├── ellip_cover.cpp ├── poly_cover.cpp ├── skygrid.cpp ├── sum_segim.cpp ├── sum_square.cpp ├── this_in_that.cpp ├── water.cpp ├── water.h └── water_old.cpp └── vignettes ├── ProFound-Blender.Rmd ├── ProFound-Colour.Rmd ├── ProFound-Complex-Fit.Rmd ├── ProFound-MultiBand-Stack.Rmd ├── ProFound-Segim-Maps.Rmd ├── ProFound-Simulated-Images.Rmd ├── ProFound-Sky_Shenanigans.Rmd ├── ProFound-Source-Finding.Rmd ├── ProFound-Stack-Images.Rmd ├── ProFound-TipsTricks.Rmd └── rsconnect └── documents ├── ProFound-Simulated-Images.Rmd └── rpubs.com │ └── rpubs │ └── Document.dcf ├── ProFound-Sky_Shenanigans.Rmd └── rpubs.com │ └── rpubs │ └── Document.dcf └── ProFound-Source-Finding.Rmd └── rpubs.com └── rpubs └── Document.dcf /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/profoundAperPhot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundAperPhot.R -------------------------------------------------------------------------------- /R/profoundApplyMask.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundApplyMask.R -------------------------------------------------------------------------------- /R/profoundAutoMerge.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundAutoMerge.R -------------------------------------------------------------------------------- /R/profoundDiscoSky.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundDiscoSky.R -------------------------------------------------------------------------------- /R/profoundEllipse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundEllipse.R -------------------------------------------------------------------------------- /R/profoundFitMagPSF.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundFitMagPSF.R -------------------------------------------------------------------------------- /R/profoundFluxDeblend.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundFluxDeblend.R -------------------------------------------------------------------------------- /R/profoundHotFuzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundHotFuzz.R -------------------------------------------------------------------------------- /R/profoundMultiBand.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundMultiBand.R -------------------------------------------------------------------------------- /R/profoundPixelCorrelation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundPixelCorrelation.R -------------------------------------------------------------------------------- /R/profoundProFound.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundProFound.R -------------------------------------------------------------------------------- /R/profoundSegim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundSegim.R -------------------------------------------------------------------------------- /R/profoundSegimFix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundSegimFix.R -------------------------------------------------------------------------------- /R/profoundSky.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundSky.R -------------------------------------------------------------------------------- /R/profoundUtility.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/profoundUtility.R -------------------------------------------------------------------------------- /R/this_in_that.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/R/this_in_that.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/README.md -------------------------------------------------------------------------------- /data/FPtest.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/data/FPtest.rda -------------------------------------------------------------------------------- /inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/CITATION -------------------------------------------------------------------------------- /inst/extdata/IRdata/p100_im.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/IRdata/p100_im.fits -------------------------------------------------------------------------------- /inst/extdata/IRdata/p100_psf.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/IRdata/p100_psf.fits -------------------------------------------------------------------------------- /inst/extdata/IRdata/p160_im.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/IRdata/p160_im.fits -------------------------------------------------------------------------------- /inst/extdata/IRdata/p160_psf.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/IRdata/p160_psf.fits -------------------------------------------------------------------------------- /inst/extdata/IRdata/s250_im.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/IRdata/s250_im.fits -------------------------------------------------------------------------------- /inst/extdata/IRdata/s250_psf.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/IRdata/s250_psf.fits -------------------------------------------------------------------------------- /inst/extdata/IRdata/s350_im.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/IRdata/s350_im.fits -------------------------------------------------------------------------------- /inst/extdata/IRdata/s350_psf.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/IRdata/s350_psf.fits -------------------------------------------------------------------------------- /inst/extdata/IRdata/s500_im.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/IRdata/s500_im.fits -------------------------------------------------------------------------------- /inst/extdata/IRdata/s500_psf.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/IRdata/s500_psf.fits -------------------------------------------------------------------------------- /inst/extdata/MultiBand/H.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/MultiBand/H.fits -------------------------------------------------------------------------------- /inst/extdata/MultiBand/J.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/MultiBand/J.fits -------------------------------------------------------------------------------- /inst/extdata/MultiBand/Ks.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/MultiBand/Ks.fits -------------------------------------------------------------------------------- /inst/extdata/MultiBand/Y.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/MultiBand/Y.fits -------------------------------------------------------------------------------- /inst/extdata/MultiBand/Z.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/MultiBand/Z.fits -------------------------------------------------------------------------------- /inst/extdata/MultiBand/g.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/MultiBand/g.fits -------------------------------------------------------------------------------- /inst/extdata/MultiBand/i.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/MultiBand/i.fits -------------------------------------------------------------------------------- /inst/extdata/MultiBand/r.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/MultiBand/r.fits -------------------------------------------------------------------------------- /inst/extdata/MultiBand/u.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/MultiBand/u.fits -------------------------------------------------------------------------------- /inst/extdata/VIKING/mystery_VIKING_Z.fits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/inst/extdata/VIKING/mystery_VIKING_Z.fits -------------------------------------------------------------------------------- /man/FPtest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/FPtest.Rd -------------------------------------------------------------------------------- /man/plot.fitmagpsf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/plot.fitmagpsf.Rd -------------------------------------------------------------------------------- /man/plot.profound.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/plot.profound.Rd -------------------------------------------------------------------------------- /man/profoundAperPhot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundAperPhot.Rd -------------------------------------------------------------------------------- /man/profoundApplyMask.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundApplyMask.Rd -------------------------------------------------------------------------------- /man/profoundAutoMerge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundAutoMerge.Rd -------------------------------------------------------------------------------- /man/profoundCatMerge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundCatMerge.Rd -------------------------------------------------------------------------------- /man/profoundChisel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundChisel.Rd -------------------------------------------------------------------------------- /man/profoundCover.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundCover.Rd -------------------------------------------------------------------------------- /man/profoundDiscoSky.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundDiscoSky.Rd -------------------------------------------------------------------------------- /man/profoundDrawEllipse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundDrawEllipse.Rd -------------------------------------------------------------------------------- /man/profoundEllipseSeg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundEllipseSeg.Rd -------------------------------------------------------------------------------- /man/profoundFitMagPSF.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundFitMagPSF.Rd -------------------------------------------------------------------------------- /man/profoundFlux2Mag.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundFlux2Mag.Rd -------------------------------------------------------------------------------- /man/profoundFluxDeblend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundFluxDeblend.Rd -------------------------------------------------------------------------------- /man/profoundGainConvert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundGainConvert.Rd -------------------------------------------------------------------------------- /man/profoundGainEst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundGainEst.Rd -------------------------------------------------------------------------------- /man/profoundGetEllipse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundGetEllipse.Rd -------------------------------------------------------------------------------- /man/profoundGetEllipses.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundGetEllipses.Rd -------------------------------------------------------------------------------- /man/profoundGetEllipsesPlot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundGetEllipsesPlot.Rd -------------------------------------------------------------------------------- /man/profoundHotFuzz.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundHotFuzz.Rd -------------------------------------------------------------------------------- /man/profoundImBlur.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundImBlur.Rd -------------------------------------------------------------------------------- /man/profoundMag2Mu.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundMag2Mu.Rd -------------------------------------------------------------------------------- /man/profoundMakeSegim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundMakeSegim.Rd -------------------------------------------------------------------------------- /man/profoundMakeSegimExpand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundMakeSegimExpand.Rd -------------------------------------------------------------------------------- /man/profoundMakeSegimPropogate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundMakeSegimPropogate.Rd -------------------------------------------------------------------------------- /man/profoundMakeSigma.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundMakeSigma.Rd -------------------------------------------------------------------------------- /man/profoundMakeSkyMap.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundMakeSkyMap.Rd -------------------------------------------------------------------------------- /man/profoundMultiBand.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundMultiBand.Rd -------------------------------------------------------------------------------- /man/profoundPixelCorrelation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundPixelCorrelation.Rd -------------------------------------------------------------------------------- /man/profoundProFound.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundProFound.Rd -------------------------------------------------------------------------------- /man/profoundResample.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundResample.Rd -------------------------------------------------------------------------------- /man/profoundSegimCompare.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSegimCompare.Rd -------------------------------------------------------------------------------- /man/profoundSegimEdge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSegimEdge.Rd -------------------------------------------------------------------------------- /man/profoundSegimExtend.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSegimExtend.Rd -------------------------------------------------------------------------------- /man/profoundSegimFix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSegimFix.Rd -------------------------------------------------------------------------------- /man/profoundSegimGroup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSegimGroup.Rd -------------------------------------------------------------------------------- /man/profoundSegimKeep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSegimKeep.Rd -------------------------------------------------------------------------------- /man/profoundSegimMerge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSegimMerge.Rd -------------------------------------------------------------------------------- /man/profoundSegimNear.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSegimNear.Rd -------------------------------------------------------------------------------- /man/profoundSegimStats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSegimStats.Rd -------------------------------------------------------------------------------- /man/profoundShareFlux.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundShareFlux.Rd -------------------------------------------------------------------------------- /man/profoundSkyEst.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSkyEst.Rd -------------------------------------------------------------------------------- /man/profoundSkyEstLoc.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSkyEstLoc.Rd -------------------------------------------------------------------------------- /man/profoundSkyPoly.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSkyPoly.Rd -------------------------------------------------------------------------------- /man/profoundSkyScan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundSkyScan.Rd -------------------------------------------------------------------------------- /man/profoundZapSegID.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/profoundZapSegID.Rd -------------------------------------------------------------------------------- /man/this_in_that.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/this_in_that.Rd -------------------------------------------------------------------------------- /man/water_cpp.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/man/water_cpp.Rd -------------------------------------------------------------------------------- /src/Array2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/Array2.h -------------------------------------------------------------------------------- /src/IntpAkimaUniform2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/IntpAkimaUniform2.h -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/akima.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/akima.cpp -------------------------------------------------------------------------------- /src/akima.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/akima.h -------------------------------------------------------------------------------- /src/aper_cover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/aper_cover.cpp -------------------------------------------------------------------------------- /src/dilate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/dilate.cpp -------------------------------------------------------------------------------- /src/ellip_cover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/ellip_cover.cpp -------------------------------------------------------------------------------- /src/poly_cover.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/poly_cover.cpp -------------------------------------------------------------------------------- /src/skygrid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/skygrid.cpp -------------------------------------------------------------------------------- /src/sum_segim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/sum_segim.cpp -------------------------------------------------------------------------------- /src/sum_square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/sum_square.cpp -------------------------------------------------------------------------------- /src/this_in_that.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/this_in_that.cpp -------------------------------------------------------------------------------- /src/water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/water.cpp -------------------------------------------------------------------------------- /src/water.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/water.h -------------------------------------------------------------------------------- /src/water_old.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/src/water_old.cpp -------------------------------------------------------------------------------- /vignettes/ProFound-Blender.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/ProFound-Blender.Rmd -------------------------------------------------------------------------------- /vignettes/ProFound-Colour.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/ProFound-Colour.Rmd -------------------------------------------------------------------------------- /vignettes/ProFound-Complex-Fit.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/ProFound-Complex-Fit.Rmd -------------------------------------------------------------------------------- /vignettes/ProFound-MultiBand-Stack.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/ProFound-MultiBand-Stack.Rmd -------------------------------------------------------------------------------- /vignettes/ProFound-Segim-Maps.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/ProFound-Segim-Maps.Rmd -------------------------------------------------------------------------------- /vignettes/ProFound-Simulated-Images.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/ProFound-Simulated-Images.Rmd -------------------------------------------------------------------------------- /vignettes/ProFound-Sky_Shenanigans.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/ProFound-Sky_Shenanigans.Rmd -------------------------------------------------------------------------------- /vignettes/ProFound-Source-Finding.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/ProFound-Source-Finding.Rmd -------------------------------------------------------------------------------- /vignettes/ProFound-Stack-Images.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/ProFound-Stack-Images.Rmd -------------------------------------------------------------------------------- /vignettes/ProFound-TipsTricks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/ProFound-TipsTricks.Rmd -------------------------------------------------------------------------------- /vignettes/rsconnect/documents/ProFound-Simulated-Images.Rmd/rpubs.com/rpubs/Document.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/rsconnect/documents/ProFound-Simulated-Images.Rmd/rpubs.com/rpubs/Document.dcf -------------------------------------------------------------------------------- /vignettes/rsconnect/documents/ProFound-Sky_Shenanigans.Rmd/rpubs.com/rpubs/Document.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/rsconnect/documents/ProFound-Sky_Shenanigans.Rmd/rpubs.com/rpubs/Document.dcf -------------------------------------------------------------------------------- /vignettes/rsconnect/documents/ProFound-Source-Finding.Rmd/rpubs.com/rpubs/Document.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asgr/ProFound/HEAD/vignettes/rsconnect/documents/ProFound-Source-Finding.Rmd/rpubs.com/rpubs/Document.dcf --------------------------------------------------------------------------------