Skip to content

Instantly share code, notes, and snippets.

@szihs
szihs / gstmyfilter.cpp
Last active August 12, 2019 11:47
GST Sample Filter
/**
* SECTION:element-myfilter
*
* FIXME:Describe myfilter here.
*
* <refsect2>
* <title>Example launch line</title>
* |[
* gst-launch -v -m fakesrc ! myfilter ! fakesink silent=TRUE
* ]|
@szihs
szihs / test.cpp
Last active August 15, 2021 11:33
Sample code to compute convolution output
#include <iostream>
#include "include/libnpy/npy.hpp"
#include "arm_compute/runtime/NEON/NEFunctions.h"
#include "arm_compute/core/Types.h"
#include "arm_compute/runtime/Allocator.h"
#include "arm_compute/runtime/BlobLifetimeManager.h"
#include "arm_compute/runtime/MemoryManagerOnDemand.h"
#include "arm_compute/runtime/PoolManager.h"
#include "utils/Utils.h"