Jump to content

GstCUDA - Evaluating GstCUDA: Difference between revisions

m
Update binary structure
m (Update binary structure)
Line 93: Line 93:
├── examples
├── examples
│   ├── cudafilter_algorithms
│   ├── cudafilter_algorithms
│   │   ├── gray-scale-filter.so
│   │   ├── gray-scale-filter
│   │   ├── median-filter.so
│   │   │   ├── gray-scale-filter.cu
│   │   └── memcpy
│   │   │   ├── gray-scale-filter.o
│   │   │   ├── gray-scale-filter.so
│   │   │   ├── Makefile
│   │   │   ├── README.md
│   │   │   └── test-pipelines.txt
│   │   ├── Makefile
│   │   ├── median-filter
│   │   │   ├── Makefile
│   │   │   ├── median-filter.cu
│   │   │   ├── median-filter.o
│   │   │   ├── median-filter.so
│   │   │   └── README.md
│   │   ├── memcpy
│   │   │   ├── Makefile
│   │   │   ├── memcpy.cu
│   │   │   ├── memcpy.o
│   │   │   ├── memcpy.so
│   │   │   ├── README.md
│   │   │   └── test-pipelines.txt
│   │   └── pinhole
│   │      ├── Makefile
│   │      ├── Makefile
│   │      ├── memcpy.cu
│   │      ├── pinhole.cu
│   │      ├── memcpy.so
│   │      ├── pinhole.o
│   │      ├── pinhole.so
│   │      └── README.md
│   ├── cudamux_algorithms
│   │   ├── Makefile
│   │   └── mixer
│   │      ├── Makefile
│   │      ├── mixer.cu
│   │      ├── mixer.o
│   │      ├── mixer.so
│   │      ├── README.md
│   │      ├── README.md
│   │      └── test-pipelines.txt
│   │      └── test-pipelines.txt
│   └── cudamux_algorithms
│   ├── filter
│      └── mixer.so
│   │   ├── gstcudaexamplefilter.c
├── README
│   │   ├── 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
Line 121: Line 176:
             ├── gstreamer-1.0
             ├── gstreamer-1.0
             │   ├── libgstcudaexamplefilter.so
             │   ├── libgstcudaexamplefilter.so
             │   └── libgstcuda.so
            │   ├── libgstcuda.so
            │   ├── libgstopencvfilter.so
             │   └── libgstopencvwarp.so
             ├── libgstcuda-1.0.so -> libgstcuda-1.0.so.0.100.0
             ├── libgstcuda-1.0.so -> libgstcuda-1.0.so.0.100.0
             ├── libgstcuda-1.0.so.0 -> libgstcuda-1.0.so.0.100.0
             ├── libgstcuda-1.0.so.0 -> libgstcuda-1.0.so.0.100.0
             └── libgstcuda-1.0.so.0.100.0
             └── libgstcuda-1.0.so.0.100.0




Cookies help us deliver our services. By using our services, you agree to our use of cookies.