Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM nvidia/cuda:12.6.0-cudnn-devel-ubuntu22.04

LABEL name="PoissonRecon_GPU" maintainer="Causality-C"

# update package lists and install git, wget, vim, libegl1-mesa-dev, and libglib2.0-0
RUN apt-get update && apt-get install -y build-essential git wget vim libegl1-mesa-dev libglib2.0-0 unzip git tree cmake

WORKDIR /workspace
COPY . .
RUN mkdir build && cd build && cmake ..

4 changes: 2 additions & 2 deletions main.cu
Original file line number Diff line number Diff line change
Expand Up @@ -3248,8 +3248,8 @@ int main() {
// char fileName[]="/home/davidxu/horse.npts";
// char outName[]="/home/davidxu/horse.ply";

char fileName[]="/home/davidxu/bunny.points.ply";
char outName[]="/home/davidxu/bunny.ply";
char fileName[]="/workspace/bunny.points.ply";
char outName[]="/workspace/bunny.ply";

// char fileName[]="/home/davidxu/eagle.points.ply";
// char outName[]="/home/davidxu/eagle.ply";
Expand Down