Jump to content

GstCUDA - Evaluating GstCUDA: Difference between revisions

m
Update binary structure
m (Update binary structure)
m (Update binary structure)
Line 90: Line 90:
<syntaxhighlight lang="bash">
<syntaxhighlight lang="bash">
.
.
├── algorithm.mk
├── examples
├── examples
│   ├── algorithm.mk
│   ├── cudafilter_algorithms
│   ├── cudafilter_algorithms
│   │   ├── gray-scale-filter
│   │   ├── gray-scale-filter
│   │   │   ├── gray-scale-filter.cu
│   │   │   ├── gray-scale-filter.cu
│   │   │   ├── gray-scale-filter.o
│   │   │   ├── gray-scale-filter.so
│   │   │   ├── gray-scale-filter.so
│   │   │   ├── Makefile
│   │   │   ├── Makefile
│   │   │   ├── README.md
│   │   │   ├── README.md
│   │   │   └── test-pipelines.txt
│   │   │   └── test-pipelines.txt
│   │   ├── Makefile
│   │   ├── median-filter
│   │   ├── median-filter
│   │   │   ├── Makefile
│   │   │   ├── Makefile
│   │   │   ├── median-filter.cu
│   │   │   ├── median-filter.cu
│   │   │   ├── median-filter.o
│   │   │   ├── median-filter.so
│   │   │   ├── median-filter.so
│   │   │   └── README.md
│   │   │   └── README.md
Line 110: Line 107:
│   │   │   ├── Makefile
│   │   │   ├── Makefile
│   │   │   ├── memcpy.cu
│   │   │   ├── memcpy.cu
│   │   │   ├── memcpy.o
│   │   │   ├── memcpy.so
│   │   │   ├── memcpy.so
│   │   │   ├── README.md
│   │   │   ├── README.md
Line 117: Line 113:
│   │      ├── Makefile
│   │      ├── Makefile
│   │      ├── pinhole.cu
│   │      ├── pinhole.cu
│   │      ├── pinhole.o
│   │      ├── pinhole.so
│   │      ├── pinhole.so
│   │      └── README.md
│   │      └── README.md
│   ├── cudamux_algorithms
│   └── cudamux_algorithms
│   │   ├── Makefile
│       └── mixer
│   │   └── mixer
│           ├── Makefile
│   │      ├── Makefile
│           ├── mixer.cu
│   │      ├── mixer.cu
│           ├── mixer.so
│   │      ├── mixer.o
│           ├── README.md
│   │      ├── mixer.so
│           └── test-pipelines.txt
│   │      ├── README.md
│   │      └── test-pipelines.txt
│   ├── filter
│   │   ├── gstcudaexamplefilter.c
│   │   ├── gstcudaexamplefilter.h
│   │   ├── libgstcudaexamplefilter.la
│   │   ├── libgstcudaexamplefilter_la-gstcudaexamplefilter.lo
│   │   ├── libgstcudaexamplefilter_la-gstcudaexamplefilter.o
│   │   ├── Makefile
│   │   ├── memcpy.cu
│   │   ├── memcpy.h
│   │   └── memcpy.o
│   ├── Makefile
│   ├── opencv_filter
│   │   ├── filter.cc
│   │   ├── filter.h
│   │   ├── gstopencvfilter.cc
│   │   ├── gstopencvfilter.h
│   │   ├── libgstopencvfilter.la
│   │   ├── libgstopencvfilter_la-filter.lo
│   │   ├── libgstopencvfilter_la-filter.o
│   │   ├── libgstopencvfilter_la-gstopencvfilter.lo
│   │   ├── libgstopencvfilter_la-gstopencvfilter.o
│   │   └── Makefile
│   └── opencv_warp
│      ├── gstopencvwarp.cc
│      ├── gstopencvwarp.h
│      ├── libgstopencvwarp.la
│      ├── libgstopencvwarp_la-gstopencvwarp.lo
│      ├── libgstopencvwarp_la-gstopencvwarp.o
│      └── Makefile
├── README.md
└── usr
└── usr
     ├── include
     ├── include
Cookies help us deliver our services. By using our services, you agree to our use of cookies.