├── LICENSE ├── README.md ├── amx_tests ├── CMakeLists.txt ├── amx_tests.sln ├── amx_tests.vcxproj └── src │ ├── amx.h │ ├── defs.h │ ├── gemm_amx.cpp │ ├── gemm_fp32.cpp │ ├── main.cpp │ ├── mat.h │ ├── test.h │ ├── test_amx.cpp │ └── test_gemm.cpp ├── bf16_test ├── bf16.h ├── bf16_test.sln ├── bf16_test.vcxproj ├── defs.h └── test.cpp ├── convolution_direct ├── CMakeLists.txt ├── convolution_direct.sln ├── convolution_direct.vcxproj └── src │ ├── defs.h │ └── test.cpp ├── cosine_distance ├── cosine_distance.sln ├── cosine_distance.vcxproj ├── data │ └── descriptors.txt └── src │ ├── defs.h │ ├── descriptor.h │ ├── float16.h │ └── test.cpp ├── cuda_tests ├── cuda_tests.sln └── graph_tests │ ├── add_test.cpp │ ├── capture_test.cpp │ ├── cublas_test.cpp │ ├── defs.h │ ├── graph_tests.cpp │ ├── graph_tests.vcxproj │ ├── graph_tests.vcxproj.filters │ ├── nodes.cpp │ ├── nodes.cu │ ├── nodes.h │ ├── subgraph_test.cpp │ ├── tensor.h │ ├── tests.h │ ├── utils.cpp │ └── utils.h ├── deepstream_tests ├── .vs │ ├── ProjectSettings.json │ └── launch.vs.json ├── Gst │ ├── Args.h │ ├── Common.cpp │ ├── Common.h │ ├── Element.h │ ├── MainLoop.h │ ├── Options.h │ ├── SourceBin.h │ ├── Utils.cpp │ └── Utils.h ├── data │ ├── color_0 │ │ ├── calibration.bin │ │ ├── config.txt │ │ ├── config_custom_parse.txt │ │ ├── labels.txt │ │ ├── mean.ppm │ │ ├── resnet18.caffemodel │ │ └── resnet18.prototxt │ └── detect_0 │ │ ├── calibration.bin │ │ ├── config.txt │ │ ├── labels.txt │ │ ├── resnet10.caffemodel │ │ └── resnet10.prototxt ├── deepstream_decode │ ├── CMakeLists.txt │ ├── CMakeSettings.json │ └── deepstream_decode.cpp ├── deepstream_detect │ ├── CMakeLists.txt │ ├── CMakeSettings.json │ └── deepstream_detect.cpp ├── deepstream_image_detect │ ├── CMakeLists.txt │ ├── CMakeSettings.json │ └── deepstream_image_detect.cpp ├── deepstream_multi_detect │ ├── CMakeLists.txt │ ├── CMakeSettings.json │ └── deepstream_multi_detect.cpp └── deepstream_transcode │ ├── CMakeLists.txt │ ├── CMakeSettings.json │ └── deepstream_transcode.cpp ├── erf_test ├── defs.h ├── erf_test.sln ├── erf_test.vcxproj └── test.cpp ├── gstreamer_tests ├── basic_tutorial │ ├── Gst │ │ ├── Common.h │ │ ├── Element.h │ │ └── Pipeline.h │ ├── args.h │ ├── basic_tutorial.cpp │ ├── basic_tutorial.vcxproj │ ├── basic_tutorial.vcxproj.filters │ ├── basic_tutorial_01.cpp │ ├── basic_tutorial_02.cpp │ ├── basic_tutorial_03.cpp │ ├── basic_tutorial_04.cpp │ ├── common.h │ └── options.h └── gstreamer_tests.sln ├── mmosbs_cpu_st ├── CMakeLists.txt ├── README.md ├── mmosbs.sln ├── mmosbs.vcxproj └── src │ ├── defs.h │ ├── step0.cpp │ ├── step1.cpp │ ├── step2.cpp │ ├── step3.cpp │ ├── step4.cpp │ ├── step5.cpp │ ├── step6.cpp │ ├── step7.cpp │ └── test.cpp ├── mmosbs_cuda ├── .gitignore ├── CMakeLists.txt ├── mmosbs.sln ├── mmosbs.vcxproj └── src │ ├── cublas.cpp │ ├── defs.h │ ├── step0.cu │ ├── step1.cu │ ├── step2.cu │ ├── step3.cu │ ├── step4.cu │ ├── step5.cu │ ├── step6.cu │ ├── step7.cu │ ├── step8.cu │ └── test.cpp ├── sincos_test ├── defs.h ├── sincos_test.sln ├── sincos_test.vcxproj └── test.cpp ├── skip_frame_test ├── skip_frame_test.sln ├── skip_frame_test.vcxproj └── test.cpp └── thread_tests ├── read_write_test ├── Data.h ├── Defs.h ├── Test.cpp ├── TestAtomic.h ├── TestBase.h ├── TestMutex.h ├── TestStub.h ├── Utils.h └── read_write_test.vcxproj └── thread_tests.sln /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/README.md -------------------------------------------------------------------------------- /amx_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/CMakeLists.txt -------------------------------------------------------------------------------- /amx_tests/amx_tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/amx_tests.sln -------------------------------------------------------------------------------- /amx_tests/amx_tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/amx_tests.vcxproj -------------------------------------------------------------------------------- /amx_tests/src/amx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/src/amx.h -------------------------------------------------------------------------------- /amx_tests/src/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/src/defs.h -------------------------------------------------------------------------------- /amx_tests/src/gemm_amx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/src/gemm_amx.cpp -------------------------------------------------------------------------------- /amx_tests/src/gemm_fp32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/src/gemm_fp32.cpp -------------------------------------------------------------------------------- /amx_tests/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/src/main.cpp -------------------------------------------------------------------------------- /amx_tests/src/mat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/src/mat.h -------------------------------------------------------------------------------- /amx_tests/src/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/src/test.h -------------------------------------------------------------------------------- /amx_tests/src/test_amx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/src/test_amx.cpp -------------------------------------------------------------------------------- /amx_tests/src/test_gemm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/amx_tests/src/test_gemm.cpp -------------------------------------------------------------------------------- /bf16_test/bf16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/bf16_test/bf16.h -------------------------------------------------------------------------------- /bf16_test/bf16_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/bf16_test/bf16_test.sln -------------------------------------------------------------------------------- /bf16_test/bf16_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/bf16_test/bf16_test.vcxproj -------------------------------------------------------------------------------- /bf16_test/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/bf16_test/defs.h -------------------------------------------------------------------------------- /bf16_test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/bf16_test/test.cpp -------------------------------------------------------------------------------- /convolution_direct/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/convolution_direct/CMakeLists.txt -------------------------------------------------------------------------------- /convolution_direct/convolution_direct.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/convolution_direct/convolution_direct.sln -------------------------------------------------------------------------------- /convolution_direct/convolution_direct.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/convolution_direct/convolution_direct.vcxproj -------------------------------------------------------------------------------- /convolution_direct/src/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/convolution_direct/src/defs.h -------------------------------------------------------------------------------- /convolution_direct/src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/convolution_direct/src/test.cpp -------------------------------------------------------------------------------- /cosine_distance/cosine_distance.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cosine_distance/cosine_distance.sln -------------------------------------------------------------------------------- /cosine_distance/cosine_distance.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cosine_distance/cosine_distance.vcxproj -------------------------------------------------------------------------------- /cosine_distance/data/descriptors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cosine_distance/data/descriptors.txt -------------------------------------------------------------------------------- /cosine_distance/src/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cosine_distance/src/defs.h -------------------------------------------------------------------------------- /cosine_distance/src/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cosine_distance/src/descriptor.h -------------------------------------------------------------------------------- /cosine_distance/src/float16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cosine_distance/src/float16.h -------------------------------------------------------------------------------- /cosine_distance/src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cosine_distance/src/test.cpp -------------------------------------------------------------------------------- /cuda_tests/cuda_tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/cuda_tests.sln -------------------------------------------------------------------------------- /cuda_tests/graph_tests/add_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/add_test.cpp -------------------------------------------------------------------------------- /cuda_tests/graph_tests/capture_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/capture_test.cpp -------------------------------------------------------------------------------- /cuda_tests/graph_tests/cublas_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/cublas_test.cpp -------------------------------------------------------------------------------- /cuda_tests/graph_tests/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/defs.h -------------------------------------------------------------------------------- /cuda_tests/graph_tests/graph_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/graph_tests.cpp -------------------------------------------------------------------------------- /cuda_tests/graph_tests/graph_tests.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/graph_tests.vcxproj -------------------------------------------------------------------------------- /cuda_tests/graph_tests/graph_tests.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/graph_tests.vcxproj.filters -------------------------------------------------------------------------------- /cuda_tests/graph_tests/nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/nodes.cpp -------------------------------------------------------------------------------- /cuda_tests/graph_tests/nodes.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/nodes.cu -------------------------------------------------------------------------------- /cuda_tests/graph_tests/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/nodes.h -------------------------------------------------------------------------------- /cuda_tests/graph_tests/subgraph_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/subgraph_test.cpp -------------------------------------------------------------------------------- /cuda_tests/graph_tests/tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/tensor.h -------------------------------------------------------------------------------- /cuda_tests/graph_tests/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/tests.h -------------------------------------------------------------------------------- /cuda_tests/graph_tests/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/utils.cpp -------------------------------------------------------------------------------- /cuda_tests/graph_tests/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/cuda_tests/graph_tests/utils.h -------------------------------------------------------------------------------- /deepstream_tests/.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": "Linux-GCC-Debug" 3 | } -------------------------------------------------------------------------------- /deepstream_tests/.vs/launch.vs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/.vs/launch.vs.json -------------------------------------------------------------------------------- /deepstream_tests/Gst/Args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/Gst/Args.h -------------------------------------------------------------------------------- /deepstream_tests/Gst/Common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/Gst/Common.cpp -------------------------------------------------------------------------------- /deepstream_tests/Gst/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/Gst/Common.h -------------------------------------------------------------------------------- /deepstream_tests/Gst/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/Gst/Element.h -------------------------------------------------------------------------------- /deepstream_tests/Gst/MainLoop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/Gst/MainLoop.h -------------------------------------------------------------------------------- /deepstream_tests/Gst/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/Gst/Options.h -------------------------------------------------------------------------------- /deepstream_tests/Gst/SourceBin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/Gst/SourceBin.h -------------------------------------------------------------------------------- /deepstream_tests/Gst/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/Gst/Utils.cpp -------------------------------------------------------------------------------- /deepstream_tests/Gst/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/Gst/Utils.h -------------------------------------------------------------------------------- /deepstream_tests/data/color_0/calibration.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/color_0/calibration.bin -------------------------------------------------------------------------------- /deepstream_tests/data/color_0/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/color_0/config.txt -------------------------------------------------------------------------------- /deepstream_tests/data/color_0/config_custom_parse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/color_0/config_custom_parse.txt -------------------------------------------------------------------------------- /deepstream_tests/data/color_0/labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/color_0/labels.txt -------------------------------------------------------------------------------- /deepstream_tests/data/color_0/mean.ppm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/color_0/mean.ppm -------------------------------------------------------------------------------- /deepstream_tests/data/color_0/resnet18.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/color_0/resnet18.caffemodel -------------------------------------------------------------------------------- /deepstream_tests/data/color_0/resnet18.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/color_0/resnet18.prototxt -------------------------------------------------------------------------------- /deepstream_tests/data/detect_0/calibration.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/detect_0/calibration.bin -------------------------------------------------------------------------------- /deepstream_tests/data/detect_0/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/detect_0/config.txt -------------------------------------------------------------------------------- /deepstream_tests/data/detect_0/labels.txt: -------------------------------------------------------------------------------- 1 | Car 2 | Bicycle 3 | Person 4 | Roadsign 5 | -------------------------------------------------------------------------------- /deepstream_tests/data/detect_0/resnet10.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/detect_0/resnet10.caffemodel -------------------------------------------------------------------------------- /deepstream_tests/data/detect_0/resnet10.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/data/detect_0/resnet10.prototxt -------------------------------------------------------------------------------- /deepstream_tests/deepstream_decode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_decode/CMakeLists.txt -------------------------------------------------------------------------------- /deepstream_tests/deepstream_decode/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_decode/CMakeSettings.json -------------------------------------------------------------------------------- /deepstream_tests/deepstream_decode/deepstream_decode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_decode/deepstream_decode.cpp -------------------------------------------------------------------------------- /deepstream_tests/deepstream_detect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_detect/CMakeLists.txt -------------------------------------------------------------------------------- /deepstream_tests/deepstream_detect/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_detect/CMakeSettings.json -------------------------------------------------------------------------------- /deepstream_tests/deepstream_detect/deepstream_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_detect/deepstream_detect.cpp -------------------------------------------------------------------------------- /deepstream_tests/deepstream_image_detect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_image_detect/CMakeLists.txt -------------------------------------------------------------------------------- /deepstream_tests/deepstream_image_detect/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_image_detect/CMakeSettings.json -------------------------------------------------------------------------------- /deepstream_tests/deepstream_image_detect/deepstream_image_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_image_detect/deepstream_image_detect.cpp -------------------------------------------------------------------------------- /deepstream_tests/deepstream_multi_detect/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_multi_detect/CMakeLists.txt -------------------------------------------------------------------------------- /deepstream_tests/deepstream_multi_detect/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_multi_detect/CMakeSettings.json -------------------------------------------------------------------------------- /deepstream_tests/deepstream_multi_detect/deepstream_multi_detect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_multi_detect/deepstream_multi_detect.cpp -------------------------------------------------------------------------------- /deepstream_tests/deepstream_transcode/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_transcode/CMakeLists.txt -------------------------------------------------------------------------------- /deepstream_tests/deepstream_transcode/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_transcode/CMakeSettings.json -------------------------------------------------------------------------------- /deepstream_tests/deepstream_transcode/deepstream_transcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/deepstream_tests/deepstream_transcode/deepstream_transcode.cpp -------------------------------------------------------------------------------- /erf_test/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/erf_test/defs.h -------------------------------------------------------------------------------- /erf_test/erf_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/erf_test/erf_test.sln -------------------------------------------------------------------------------- /erf_test/erf_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/erf_test/erf_test.vcxproj -------------------------------------------------------------------------------- /erf_test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/erf_test/test.cpp -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/Gst/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/Gst/Common.h -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/Gst/Element.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/Gst/Element.h -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/Gst/Pipeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/Gst/Pipeline.h -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/args.h -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/basic_tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/basic_tutorial.cpp -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/basic_tutorial.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/basic_tutorial.vcxproj -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/basic_tutorial.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/basic_tutorial.vcxproj.filters -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/basic_tutorial_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/basic_tutorial_01.cpp -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/basic_tutorial_02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/basic_tutorial_02.cpp -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/basic_tutorial_03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/basic_tutorial_03.cpp -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/basic_tutorial_04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/basic_tutorial_04.cpp -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/common.h -------------------------------------------------------------------------------- /gstreamer_tests/basic_tutorial/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/basic_tutorial/options.h -------------------------------------------------------------------------------- /gstreamer_tests/gstreamer_tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/gstreamer_tests/gstreamer_tests.sln -------------------------------------------------------------------------------- /mmosbs_cpu_st/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/CMakeLists.txt -------------------------------------------------------------------------------- /mmosbs_cpu_st/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/README.md -------------------------------------------------------------------------------- /mmosbs_cpu_st/mmosbs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/mmosbs.sln -------------------------------------------------------------------------------- /mmosbs_cpu_st/mmosbs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/mmosbs.vcxproj -------------------------------------------------------------------------------- /mmosbs_cpu_st/src/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/src/defs.h -------------------------------------------------------------------------------- /mmosbs_cpu_st/src/step0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/src/step0.cpp -------------------------------------------------------------------------------- /mmosbs_cpu_st/src/step1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/src/step1.cpp -------------------------------------------------------------------------------- /mmosbs_cpu_st/src/step2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/src/step2.cpp -------------------------------------------------------------------------------- /mmosbs_cpu_st/src/step3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/src/step3.cpp -------------------------------------------------------------------------------- /mmosbs_cpu_st/src/step4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/src/step4.cpp -------------------------------------------------------------------------------- /mmosbs_cpu_st/src/step5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/src/step5.cpp -------------------------------------------------------------------------------- /mmosbs_cpu_st/src/step6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/src/step6.cpp -------------------------------------------------------------------------------- /mmosbs_cpu_st/src/step7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/src/step7.cpp -------------------------------------------------------------------------------- /mmosbs_cpu_st/src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cpu_st/src/test.cpp -------------------------------------------------------------------------------- /mmosbs_cuda/.gitignore: -------------------------------------------------------------------------------- 1 | /mmosbs.vcxproj.user 2 | -------------------------------------------------------------------------------- /mmosbs_cuda/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/CMakeLists.txt -------------------------------------------------------------------------------- /mmosbs_cuda/mmosbs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/mmosbs.sln -------------------------------------------------------------------------------- /mmosbs_cuda/mmosbs.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/mmosbs.vcxproj -------------------------------------------------------------------------------- /mmosbs_cuda/src/cublas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/cublas.cpp -------------------------------------------------------------------------------- /mmosbs_cuda/src/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/defs.h -------------------------------------------------------------------------------- /mmosbs_cuda/src/step0.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/step0.cu -------------------------------------------------------------------------------- /mmosbs_cuda/src/step1.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/step1.cu -------------------------------------------------------------------------------- /mmosbs_cuda/src/step2.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/step2.cu -------------------------------------------------------------------------------- /mmosbs_cuda/src/step3.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/step3.cu -------------------------------------------------------------------------------- /mmosbs_cuda/src/step4.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/step4.cu -------------------------------------------------------------------------------- /mmosbs_cuda/src/step5.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/step5.cu -------------------------------------------------------------------------------- /mmosbs_cuda/src/step6.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/step6.cu -------------------------------------------------------------------------------- /mmosbs_cuda/src/step7.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/step7.cu -------------------------------------------------------------------------------- /mmosbs_cuda/src/step8.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/step8.cu -------------------------------------------------------------------------------- /mmosbs_cuda/src/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/mmosbs_cuda/src/test.cpp -------------------------------------------------------------------------------- /sincos_test/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/sincos_test/defs.h -------------------------------------------------------------------------------- /sincos_test/sincos_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/sincos_test/sincos_test.sln -------------------------------------------------------------------------------- /sincos_test/sincos_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/sincos_test/sincos_test.vcxproj -------------------------------------------------------------------------------- /sincos_test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/sincos_test/test.cpp -------------------------------------------------------------------------------- /skip_frame_test/skip_frame_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/skip_frame_test/skip_frame_test.sln -------------------------------------------------------------------------------- /skip_frame_test/skip_frame_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/skip_frame_test/skip_frame_test.vcxproj -------------------------------------------------------------------------------- /skip_frame_test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/skip_frame_test/test.cpp -------------------------------------------------------------------------------- /thread_tests/read_write_test/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/thread_tests/read_write_test/Data.h -------------------------------------------------------------------------------- /thread_tests/read_write_test/Defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/thread_tests/read_write_test/Defs.h -------------------------------------------------------------------------------- /thread_tests/read_write_test/Test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/thread_tests/read_write_test/Test.cpp -------------------------------------------------------------------------------- /thread_tests/read_write_test/TestAtomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/thread_tests/read_write_test/TestAtomic.h -------------------------------------------------------------------------------- /thread_tests/read_write_test/TestBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/thread_tests/read_write_test/TestBase.h -------------------------------------------------------------------------------- /thread_tests/read_write_test/TestMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/thread_tests/read_write_test/TestMutex.h -------------------------------------------------------------------------------- /thread_tests/read_write_test/TestStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/thread_tests/read_write_test/TestStub.h -------------------------------------------------------------------------------- /thread_tests/read_write_test/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/thread_tests/read_write_test/Utils.h -------------------------------------------------------------------------------- /thread_tests/read_write_test/read_write_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/thread_tests/read_write_test/read_write_test.vcxproj -------------------------------------------------------------------------------- /thread_tests/thread_tests.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ermig1979/Examples/HEAD/thread_tests/thread_tests.sln --------------------------------------------------------------------------------