├── .gitignore ├── .vscode └── settings.json ├── MNIST ├── CMakeLists.txt ├── common │ ├── Makefile │ ├── fillimage.c │ ├── isp2.x │ │ ├── Makefile │ │ ├── sample_comm_isp.c │ │ └── sample_comm_isp.h │ ├── isp3.x │ │ ├── Makefile │ │ ├── sample_comm_isp.c │ │ └── sample_comm_isp.h │ ├── loadbmp.c │ ├── loadbmp.h │ ├── rtsp_demo.h │ ├── sample_comm.c │ ├── sample_comm.h │ ├── sample_comm_aenc.c │ ├── sample_comm_ai.c │ ├── sample_comm_ao.c │ ├── sample_comm_avs.c │ ├── sample_comm_iva.c │ ├── sample_comm_ivs.c │ ├── sample_comm_rgn.c │ ├── sample_comm_tde.c │ ├── sample_comm_venc.c │ ├── sample_comm_vi.c │ ├── sample_comm_vo.c │ └── sample_comm_vpss.c ├── include │ ├── aenc_mp3_register.h │ ├── audio_server.h │ ├── iio.h │ ├── libRkScalerApi.h │ ├── libdrm │ │ ├── amdgpu_drm.h │ │ ├── drm.h │ │ ├── drm_fourcc.h │ │ ├── drm_mode.h │ │ ├── drm_sarea.h │ │ ├── i915_drm.h │ │ ├── mach64_drm.h │ │ ├── mga_drm.h │ │ ├── nouveau_drm.h │ │ ├── qxl_drm.h │ │ ├── r128_drm.h │ │ ├── radeon_drm.h │ │ ├── rockchip_drm.h │ │ ├── rockchip_drmif.h │ │ ├── savage_drm.h │ │ ├── sis_drm.h │ │ ├── tegra_drm.h │ │ ├── vc4_drm.h │ │ ├── via_drm.h │ │ └── virtgpu_drm.h │ ├── libkms │ │ └── libkms.h │ ├── libsync.h │ ├── luckfox_adc.h │ ├── luckfox_event.h │ ├── luckfox_gpio.h │ ├── luckfox_i2c.h │ ├── luckfox_led.h │ ├── luckfox_mpi.h │ ├── luckfox_pwm.h │ ├── luckfox_spi.h │ ├── luckfox_sysfs.h │ ├── luckfox_system.h │ ├── luckfox_time.h │ ├── luckfox_uart.h │ ├── luckfox_watchdog.h │ ├── mp3_enc_table1.h │ ├── mp3_enc_table2.h │ ├── mp3_enc_types.h │ ├── mp3dec.h │ ├── opencv4 │ │ └── opencv2 │ │ │ ├── core.hpp │ │ │ ├── core │ │ │ ├── affine.hpp │ │ │ ├── async.hpp │ │ │ ├── base.hpp │ │ │ ├── bindings_utils.hpp │ │ │ ├── bufferpool.hpp │ │ │ ├── check.hpp │ │ │ ├── core.hpp │ │ │ ├── core_c.h │ │ │ ├── cuda.hpp │ │ │ ├── cuda.inl.hpp │ │ │ ├── cuda │ │ │ │ ├── block.hpp │ │ │ │ ├── border_interpolate.hpp │ │ │ │ ├── color.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── datamov_utils.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── color_detail.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ │ ├── transform_detail.hpp │ │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ │ └── vec_distance_detail.hpp │ │ │ │ ├── dynamic_smem.hpp │ │ │ │ ├── emulation.hpp │ │ │ │ ├── filters.hpp │ │ │ │ ├── funcattrib.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── saturate_cast.hpp │ │ │ │ ├── scan.hpp │ │ │ │ ├── simd_functions.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── utility.hpp │ │ │ │ ├── vec_distance.hpp │ │ │ │ ├── vec_math.hpp │ │ │ │ ├── vec_traits.hpp │ │ │ │ ├── warp.hpp │ │ │ │ ├── warp_reduce.hpp │ │ │ │ └── warp_shuffle.hpp │ │ │ ├── cuda_stream_accessor.hpp │ │ │ ├── cuda_types.hpp │ │ │ ├── cv_cpu_dispatch.h │ │ │ ├── cv_cpu_helper.h │ │ │ ├── cvdef.h │ │ │ ├── cvstd.hpp │ │ │ ├── cvstd.inl.hpp │ │ │ ├── cvstd_wrapper.hpp │ │ │ ├── detail │ │ │ │ ├── async_promise.hpp │ │ │ │ ├── dispatch_helper.impl.hpp │ │ │ │ └── exception_ptr.hpp │ │ │ ├── directx.hpp │ │ │ ├── dualquaternion.hpp │ │ │ ├── dualquaternion.inl.hpp │ │ │ ├── eigen.hpp │ │ │ ├── fast_math.hpp │ │ │ ├── hal │ │ │ │ ├── hal.hpp │ │ │ │ ├── interface.h │ │ │ │ ├── intrin.hpp │ │ │ │ ├── intrin_avx.hpp │ │ │ │ ├── intrin_avx512.hpp │ │ │ │ ├── intrin_cpp.hpp │ │ │ │ ├── intrin_forward.hpp │ │ │ │ ├── intrin_lasx.hpp │ │ │ │ ├── intrin_lsx.hpp │ │ │ │ ├── intrin_msa.hpp │ │ │ │ ├── intrin_neon.hpp │ │ │ │ ├── intrin_rvv.hpp │ │ │ │ ├── intrin_rvv071.hpp │ │ │ │ ├── intrin_rvv_010_compat_non-policy.hpp │ │ │ │ ├── intrin_rvv_010_compat_overloaded-non-policy.hpp │ │ │ │ ├── intrin_rvv_011_compat.hpp │ │ │ │ ├── intrin_rvv_compat_overloaded.hpp │ │ │ │ ├── intrin_rvv_scalable.hpp │ │ │ │ ├── intrin_sse.hpp │ │ │ │ ├── intrin_sse_em.hpp │ │ │ │ ├── intrin_vsx.hpp │ │ │ │ ├── intrin_wasm.hpp │ │ │ │ ├── msa_macros.h │ │ │ │ └── simd_utils.impl.hpp │ │ │ ├── mat.hpp │ │ │ ├── mat.inl.hpp │ │ │ ├── matx.hpp │ │ │ ├── neon_utils.hpp │ │ │ ├── ocl.hpp │ │ │ ├── ocl_genbase.hpp │ │ │ ├── opencl │ │ │ │ ├── ocl_defs.hpp │ │ │ │ ├── opencl_info.hpp │ │ │ │ ├── opencl_svm.hpp │ │ │ │ └── runtime │ │ │ │ │ ├── autogenerated │ │ │ │ │ ├── opencl_clblas.hpp │ │ │ │ │ ├── opencl_clfft.hpp │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ │ ├── opencl_clblas.hpp │ │ │ │ │ ├── opencl_clfft.hpp │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ │ ├── opengl.hpp │ │ │ ├── operations.hpp │ │ │ ├── optim.hpp │ │ │ ├── ovx.hpp │ │ │ ├── parallel │ │ │ │ ├── backend │ │ │ │ │ ├── parallel_for.openmp.hpp │ │ │ │ │ └── parallel_for.tbb.hpp │ │ │ │ └── parallel_backend.hpp │ │ │ ├── persistence.hpp │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl.hpp │ │ │ ├── saturate.hpp │ │ │ ├── simd_intrinsics.hpp │ │ │ ├── softfloat.hpp │ │ │ ├── sse_utils.hpp │ │ │ ├── traits.hpp │ │ │ ├── types.hpp │ │ │ ├── types_c.h │ │ │ ├── utility.hpp │ │ │ ├── utils │ │ │ │ ├── allocator_stats.hpp │ │ │ │ ├── allocator_stats.impl.hpp │ │ │ │ ├── filesystem.hpp │ │ │ │ ├── fp_control_utils.hpp │ │ │ │ ├── instrumentation.hpp │ │ │ │ ├── logger.defines.hpp │ │ │ │ ├── logger.hpp │ │ │ │ ├── logtag.hpp │ │ │ │ ├── tls.hpp │ │ │ │ └── trace.hpp │ │ │ ├── va_intel.hpp │ │ │ ├── version.hpp │ │ │ └── vsx_utils.hpp │ │ │ ├── cvconfig.h │ │ │ ├── features2d.hpp │ │ │ ├── features2d │ │ │ ├── features2d.hpp │ │ │ └── hal │ │ │ │ └── interface.h │ │ │ ├── highgui.hpp │ │ │ ├── highgui │ │ │ └── highgui.hpp │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc │ │ │ ├── bindings.hpp │ │ │ ├── detail │ │ │ │ └── gcgraph.hpp │ │ │ ├── hal │ │ │ │ ├── hal.hpp │ │ │ │ └── interface.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc_c.h │ │ │ ├── segmentation.hpp │ │ │ └── types_c.h │ │ │ ├── opencv.hpp │ │ │ ├── opencv_modules.hpp │ │ │ ├── photo.hpp │ │ │ ├── photo │ │ │ ├── cuda.hpp │ │ │ ├── legacy │ │ │ │ └── constants_c.h │ │ │ └── photo.hpp │ │ │ ├── video.hpp │ │ │ └── video │ │ │ ├── background_segm.hpp │ │ │ ├── detail │ │ │ └── tracking.detail.hpp │ │ │ ├── legacy │ │ │ └── constants_c.h │ │ │ ├── tracking.hpp │ │ │ └── video.hpp │ ├── rga │ │ ├── GrallocOps.h │ │ ├── RgaApi.h │ │ ├── RgaMutex.h │ │ ├── RgaSingleton.h │ │ ├── RgaUtils.h │ │ ├── RockchipRga.h │ │ ├── drmrga.h │ │ ├── im2d.h │ │ ├── im2d.hpp │ │ ├── im2d_buffer.h │ │ ├── im2d_common.h │ │ ├── im2d_expand.h │ │ ├── im2d_mpi.h │ │ ├── im2d_single.h │ │ ├── im2d_task.h │ │ ├── im2d_type.h │ │ ├── im2d_version.h │ │ └── rga.h │ ├── rkAVS_stitchFor1106.h │ ├── rk_adc.h │ ├── rk_comm_adec.h │ ├── rk_comm_aenc.h │ ├── rk_comm_af.h │ ├── rk_comm_aio.h │ ├── rk_comm_avs.h │ ├── rk_comm_ivs.h │ ├── rk_comm_mb.h │ ├── rk_comm_rc.h │ ├── rk_comm_rgn.h │ ├── rk_comm_sys.h │ ├── rk_comm_tde.h │ ├── rk_comm_vdec.h │ ├── rk_comm_venc.h │ ├── rk_comm_vgs.h │ ├── rk_comm_vi.h │ ├── rk_comm_video.h │ ├── rk_comm_vo.h │ ├── rk_comm_vpss.h │ ├── rk_common.h │ ├── rk_debug.h │ ├── rk_defines.h │ ├── rk_errno.h │ ├── rk_event.h │ ├── rk_gpio.h │ ├── rk_led.h │ ├── rk_mpi_adec.h │ ├── rk_mpi_aenc.h │ ├── rk_mpi_af.h │ ├── rk_mpi_ai.h │ ├── rk_mpi_amix.h │ ├── rk_mpi_ao.h │ ├── rk_mpi_avs.h │ ├── rk_mpi_cal.h │ ├── rk_mpi_ivs.h │ ├── rk_mpi_mb.h │ ├── rk_mpi_mmz.h │ ├── rk_mpi_rgn.h │ ├── rk_mpi_sys.h │ ├── rk_mpi_tde.h │ ├── rk_mpi_vdec.h │ ├── rk_mpi_venc.h │ ├── rk_mpi_vgs.h │ ├── rk_mpi_vi.h │ ├── rk_mpi_vo.h │ ├── rk_mpi_vpss.h │ ├── rk_pwm.h │ ├── rk_sysfs.h │ ├── rk_system.h │ ├── rk_time.h │ ├── rk_type.h │ ├── rk_watchdog.h │ ├── rkaiq │ │ ├── algos │ │ │ ├── a3dlut │ │ │ │ ├── rk_aiq_types_a3dlut_algo.h │ │ │ │ ├── rk_aiq_types_a3dlut_algo_int.h │ │ │ │ ├── rk_aiq_types_a3dlut_hw.h │ │ │ │ └── rk_aiq_uapi_a3dlut_int.h │ │ │ ├── abayer2dnr2 │ │ │ │ ├── rk_aiq_types_abayer2dnr_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_abayer2dnr_algo_v2.h │ │ │ │ ├── rk_aiq_types_abayer2dnr_hw_v2.h │ │ │ │ ├── rk_aiq_uapi_abayer2dnr_int_v2.h │ │ │ │ └── rk_aiq_uapi_camgroup_abayer2dnr_int_v2.h │ │ │ ├── abayer2dnrV23 │ │ │ │ ├── rk_aiq_types_abayer2dnr_algo_int_v23.h │ │ │ │ ├── rk_aiq_types_abayer2dnr_algo_v23.h │ │ │ │ ├── rk_aiq_types_abayer2dnr_hw_v23.h │ │ │ │ ├── rk_aiq_uapi_abayer2dnr_int_v23.h │ │ │ │ └── rk_aiq_uapi_camgroup_abayer2dnr_int_v23.h │ │ │ ├── abayertnr2 │ │ │ │ ├── rk_aiq_types_abayertnr_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_abayertnr_algo_v2.h │ │ │ │ ├── rk_aiq_types_abayertnr_hw_v2.h │ │ │ │ ├── rk_aiq_uapi_abayertnr_int_v2.h │ │ │ │ └── rk_aiq_uapi_camgroup_abayertnr_int_v2.h │ │ │ ├── abayertnrV23 │ │ │ │ ├── rk_aiq_types_abayertnr_algo_int_v23.h │ │ │ │ ├── rk_aiq_types_abayertnr_algo_v23.h │ │ │ │ ├── rk_aiq_types_abayertnr_hw_v23.h │ │ │ │ ├── rk_aiq_uapi_abayertnr_int_v23.h │ │ │ │ └── rk_aiq_uapi_camgroup_abayertnr_int_v23.h │ │ │ ├── ablc │ │ │ │ ├── rk_aiq_types_ablc_algo.h │ │ │ │ ├── rk_aiq_types_ablc_algo_int.h │ │ │ │ ├── rk_aiq_types_ablc_hw.h │ │ │ │ └── rk_aiq_uapi_ablc_int.h │ │ │ ├── ablcV32 │ │ │ │ ├── rk_aiq_types_ablc_algo_int_v32.h │ │ │ │ ├── rk_aiq_types_ablc_algo_v32.h │ │ │ │ ├── rk_aiq_types_ablc_hw_v32.h │ │ │ │ └── rk_aiq_uapi_ablc_int_v32.h │ │ │ ├── acac │ │ │ │ ├── rk_aiq_types_acac_algo.h │ │ │ │ ├── rk_aiq_types_acac_algo_int.h │ │ │ │ ├── rk_aiq_types_acac_hw.h │ │ │ │ └── rk_aiq_uapi_acac_int.h │ │ │ ├── accm │ │ │ │ ├── rk_aiq_types_accm_algo.h │ │ │ │ ├── rk_aiq_types_accm_algo_int.h │ │ │ │ ├── rk_aiq_types_accm_hw.h │ │ │ │ └── rk_aiq_uapi_accm_int.h │ │ │ ├── acgc │ │ │ │ ├── rk_aiq_types_acgc_algo.h │ │ │ │ └── rk_aiq_uapi_acgc_int.h │ │ │ ├── acnr │ │ │ │ ├── rk_aiq_types_acnr_algo_int_v1.h │ │ │ │ ├── rk_aiq_types_acnr_algo_v1.h │ │ │ │ ├── rk_aiq_types_acnr_hw_v1.h │ │ │ │ └── rk_aiq_uapi_acnr_int_v1.h │ │ │ ├── acnr2 │ │ │ │ ├── rk_aiq_types_acnr_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_acnr_algo_v2.h │ │ │ │ ├── rk_aiq_types_acnr_hw_v2.h │ │ │ │ ├── rk_aiq_uapi_acnr_int_v2.h │ │ │ │ └── rk_aiq_uapi_camgroup_acnr_int_v2.h │ │ │ ├── acnrV30 │ │ │ │ ├── rk_aiq_types_acnr_algo_int_v30.h │ │ │ │ ├── rk_aiq_types_acnr_algo_v30.h │ │ │ │ ├── rk_aiq_types_acnr_hw_v30.h │ │ │ │ ├── rk_aiq_uapi_acnr_int_v30.h │ │ │ │ └── rk_aiq_uapi_camgroup_acnr_int_v30.h │ │ │ ├── acp │ │ │ │ ├── rk_aiq_types_acp_algo.h │ │ │ │ ├── rk_aiq_types_acp_algo_int.h │ │ │ │ └── rk_aiq_uapi_acp_int.h │ │ │ ├── acsm │ │ │ │ ├── rk_aiq_types_acsm_algo.h │ │ │ │ └── rk_aiq_uapi_acsm_int.h │ │ │ ├── adebayer │ │ │ │ ├── rk_aiq_types_adebayer_algo.h │ │ │ │ ├── rk_aiq_types_adebayer_algo_int.h │ │ │ │ ├── rk_aiq_types_adebayer_hw.h │ │ │ │ └── rk_aiq_uapi_adebayer_int.h │ │ │ ├── adegamma │ │ │ │ ├── rk_aiq_types_adegamma_algo.h │ │ │ │ ├── rk_aiq_types_adegamma_algo_int.h │ │ │ │ └── rk_aiq_uapi_adegamma_int.h │ │ │ ├── adehaze │ │ │ │ ├── rk_aiq_types_adehaze_algo.h │ │ │ │ ├── rk_aiq_types_adehaze_algo_int.h │ │ │ │ ├── rk_aiq_types_adehaze_hw.h │ │ │ │ ├── rk_aiq_types_adehaze_stat.h │ │ │ │ └── rk_aiq_uapi_adehaze_int.h │ │ │ ├── adpcc │ │ │ │ ├── rk_aiq_types_adpcc_algo.h │ │ │ │ ├── rk_aiq_types_adpcc_algo_int.h │ │ │ │ ├── rk_aiq_types_adpcc_hw.h │ │ │ │ └── rk_aiq_uapi_adpcc_int.h │ │ │ ├── adrc │ │ │ │ ├── rk_aiq_types_adrc_algo.h │ │ │ │ ├── rk_aiq_types_adrc_algo_int.h │ │ │ │ ├── rk_aiq_types_adrc_hw.h │ │ │ │ └── rk_aiq_uapi_adrc_int.h │ │ │ ├── ae │ │ │ │ ├── rk_aiq_types_ae_algo.h │ │ │ │ ├── rk_aiq_types_ae_algo_int.h │ │ │ │ ├── rk_aiq_types_ae_hw.h │ │ │ │ ├── rk_aiq_uapi_ae_int.h │ │ │ │ ├── rk_aiq_uapi_ae_int_types_v1.h │ │ │ │ └── rk_aiq_uapi_ae_int_types_v2.h │ │ │ ├── aeis │ │ │ │ ├── rk_aiq_types_aeis_algo.h │ │ │ │ ├── rk_aiq_types_aeis_algo_int.h │ │ │ │ ├── rk_aiq_types_aeis_hw.h │ │ │ │ └── rk_aiq_uapi_aeis_int.h │ │ │ ├── af │ │ │ │ ├── rk_aiq_af_hw_v200.h │ │ │ │ ├── rk_aiq_types_af_algo.h │ │ │ │ ├── rk_aiq_types_af_algo_int.h │ │ │ │ └── rk_aiq_uapi_af_int.h │ │ │ ├── afec │ │ │ │ ├── fec_algo.h │ │ │ │ ├── rk_aiq_types_afec_algo.h │ │ │ │ ├── rk_aiq_types_afec_algo_int.h │ │ │ │ └── rk_aiq_uapi_afec_int.h │ │ │ ├── again │ │ │ │ ├── rk_aiq_types_again_algo.h │ │ │ │ ├── rk_aiq_types_again_algo_int.h │ │ │ │ ├── rk_aiq_types_again_hw.h │ │ │ │ └── rk_aiq_uapi_again_int.h │ │ │ ├── again2 │ │ │ │ ├── rk_aiq_types_again_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_again_algo_v2.h │ │ │ │ ├── rk_aiq_types_again_hw_v2.h │ │ │ │ ├── rk_aiq_uapi_again_int_v2.h │ │ │ │ └── rk_aiq_uapi_camgroup_again_int_v2.h │ │ │ ├── agamma │ │ │ │ ├── rk_aiq_types_agamma_algo.h │ │ │ │ ├── rk_aiq_types_agamma_algo_int.h │ │ │ │ ├── rk_aiq_types_agamma_hw.h │ │ │ │ └── rk_aiq_uapi_agamma_int.h │ │ │ ├── agic │ │ │ │ ├── rk_aiq_types_algo_agic.h │ │ │ │ ├── rk_aiq_types_algo_agic_int.h │ │ │ │ └── rk_aiq_uapi_agic_int.h │ │ │ ├── aie │ │ │ │ ├── rk_aiq_types_aie_algo.h │ │ │ │ ├── rk_aiq_types_aie_algo_int.h │ │ │ │ └── rk_aiq_uapi_aie_int.h │ │ │ ├── aldch │ │ │ │ ├── rk_aiq_types_aldch_algo.h │ │ │ │ ├── rk_aiq_types_aldch_algo_int.h │ │ │ │ ├── rk_aiq_uapi_aldch_int.h │ │ │ │ └── rk_aiq_uapi_aldch_v21_int.h │ │ │ ├── alsc │ │ │ │ ├── rk_aiq_types_alsc_algo.h │ │ │ │ ├── rk_aiq_types_alsc_algo_int.h │ │ │ │ ├── rk_aiq_types_alsc_hw.h │ │ │ │ └── rk_aiq_uapi_alsc_int.h │ │ │ ├── amd │ │ │ │ ├── rk_aiq_types_algo_amd_int.h │ │ │ │ └── rk_aiq_types_amd_algo.h │ │ │ ├── amerge │ │ │ │ ├── rk_aiq_types_amerge_algo.h │ │ │ │ ├── rk_aiq_types_amerge_algo_int.h │ │ │ │ ├── rk_aiq_types_amerge_hw.h │ │ │ │ └── rk_aiq_uapi_amerge_int.h │ │ │ ├── amfnr │ │ │ │ ├── rk_aiq_types_amfnr_algo_int_v1.h │ │ │ │ ├── rk_aiq_types_amfnr_algo_v1.h │ │ │ │ ├── rk_aiq_types_amfnr_hw_v1.h │ │ │ │ └── rk_aiq_uapi_amfnr_int_v1.h │ │ │ ├── anr │ │ │ │ ├── rk_aiq_types_anr_algo.h │ │ │ │ ├── rk_aiq_types_anr_algo_int.h │ │ │ │ ├── rk_aiq_types_anr_hw.h │ │ │ │ ├── rk_aiq_uapi_anr_int.h │ │ │ │ └── tnr_md │ │ │ │ │ └── motion_detect.h │ │ │ ├── aorb │ │ │ │ ├── rk_aiq_orb_hw.h │ │ │ │ └── rk_aiq_types_orb_algo.h │ │ │ ├── arawnr │ │ │ │ ├── rk_aiq_types_abayernr_algo_int_v1.h │ │ │ │ ├── rk_aiq_types_abayernr_algo_v1.h │ │ │ │ ├── rk_aiq_types_abayernr_hw_v1.h │ │ │ │ └── rk_aiq_uapi_abayernr_int_v1.h │ │ │ ├── arawnr2 │ │ │ │ ├── rk_aiq_types_abayernr_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_abayernr_algo_v2.h │ │ │ │ ├── rk_aiq_types_abayernr_hw_v2.h │ │ │ │ └── rk_aiq_uapi_abayernr_int_v2.h │ │ │ ├── asd │ │ │ │ ├── rk_aiq_types_asd_algo.h │ │ │ │ └── rk_aiq_uapi_asd_int.h │ │ │ ├── asharp │ │ │ │ ├── rk_aiq_types_asharp_algo.h │ │ │ │ ├── rk_aiq_types_asharp_algo_int.h │ │ │ │ ├── rk_aiq_types_asharp_hw.h │ │ │ │ └── rk_aiq_uapi_asharp_int.h │ │ │ ├── asharp3 │ │ │ │ ├── rk_aiq_types_asharp_algo_int_v3.h │ │ │ │ ├── rk_aiq_types_asharp_algo_v3.h │ │ │ │ ├── rk_aiq_types_asharp_hw_v3.h │ │ │ │ └── rk_aiq_uapi_asharp_int_v3.h │ │ │ ├── asharp4 │ │ │ │ ├── rk_aiq_types_asharp_algo_int_v4.h │ │ │ │ ├── rk_aiq_types_asharp_algo_v4.h │ │ │ │ ├── rk_aiq_types_asharp_hw_v4.h │ │ │ │ ├── rk_aiq_uapi_asharp_int_v4.h │ │ │ │ └── rk_aiq_uapi_camgroup_asharp_int_v4.h │ │ │ ├── asharpV33 │ │ │ │ ├── rk_aiq_types_asharp_algo_int_v33.h │ │ │ │ ├── rk_aiq_types_asharp_algo_v33.h │ │ │ │ ├── rk_aiq_types_asharp_hw_v33.h │ │ │ │ ├── rk_aiq_uapi_asharp_int_v33.h │ │ │ │ └── rk_aiq_uapi_camgroup_asharp_int_v33.h │ │ │ ├── atmo │ │ │ │ ├── rk_aiq_types_atmo_algo.h │ │ │ │ ├── rk_aiq_types_atmo_algo_int.h │ │ │ │ ├── rk_aiq_types_atmo_stat_v200.h │ │ │ │ └── rk_aiq_uapi_atmo_int.h │ │ │ ├── auvnr │ │ │ │ ├── rk_aiq_types_auvnr_algo_int_v1.h │ │ │ │ ├── rk_aiq_types_auvnr_algo_v1.h │ │ │ │ ├── rk_aiq_types_auvnr_hw_v1.h │ │ │ │ └── rk_aiq_uapi_auvnr_int_v1.h │ │ │ ├── awb │ │ │ │ ├── rk_aiq_types_awb_algo.h │ │ │ │ ├── rk_aiq_types_awb_algo_int.h │ │ │ │ ├── rk_aiq_types_awb_stat_v200.h │ │ │ │ ├── rk_aiq_types_awb_stat_v201.h │ │ │ │ ├── rk_aiq_types_awb_stat_v2xx.h │ │ │ │ ├── rk_aiq_types_awb_stat_v32.h │ │ │ │ ├── rk_aiq_uapi_awb_int.h │ │ │ │ ├── rk_aiq_uapiv2_awb_int.h │ │ │ │ └── rk_aiq_uapiv2_camgroup_awb_int.h │ │ │ ├── aynr │ │ │ │ ├── rk_aiq_types_aynr_algo_int_v1.h │ │ │ │ ├── rk_aiq_types_aynr_algo_v1.h │ │ │ │ ├── rk_aiq_types_aynr_hw_v1.h │ │ │ │ └── rk_aiq_uapi_aynr_int_v1.h │ │ │ ├── aynr2 │ │ │ │ ├── rk_aiq_types_aynr_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_aynr_algo_v2.h │ │ │ │ ├── rk_aiq_types_aynr_hw_v2.h │ │ │ │ └── rk_aiq_uapi_aynr_int_v2.h │ │ │ ├── aynr3 │ │ │ │ ├── rk_aiq_types_aynr_algo_int_v3.h │ │ │ │ ├── rk_aiq_types_aynr_algo_v3.h │ │ │ │ ├── rk_aiq_types_aynr_hw_v3.h │ │ │ │ ├── rk_aiq_uapi_aynr_int_v3.h │ │ │ │ └── rk_aiq_uapi_camgroup_aynr_int_v3.h │ │ │ ├── aynrV22 │ │ │ │ ├── rk_aiq_types_aynr_algo_int_v22.h │ │ │ │ ├── rk_aiq_types_aynr_algo_v22.h │ │ │ │ ├── rk_aiq_types_aynr_hw_v22.h │ │ │ │ ├── rk_aiq_uapi_aynr_int_v22.h │ │ │ │ └── rk_aiq_uapi_camgroup_aynr_int_v22.h │ │ │ ├── rk_aiq_algo_des.h │ │ │ └── rk_aiq_algo_types.h │ │ ├── common │ │ │ ├── list.h │ │ │ ├── mediactl │ │ │ │ └── mediactl.h │ │ │ ├── panorama_stitchingApp.h │ │ │ ├── rk-camera-module.h │ │ │ ├── rk_aiq.h │ │ │ ├── rk_aiq_comm.h │ │ │ ├── rk_aiq_mems_sensor.h │ │ │ ├── rk_aiq_offline_raw.h │ │ │ ├── rk_aiq_types.h │ │ │ ├── rk_aiq_types_v32.h │ │ │ ├── rk_aiq_types_v3x.h │ │ │ ├── rk_isp20_hw.h │ │ │ ├── rkaiq_ini.h │ │ │ ├── rkisp2-config.h │ │ │ ├── rkisp21-config.h │ │ │ ├── rkisp3-config.h │ │ │ └── rkisp32-config.h │ │ ├── config.h │ │ ├── ipc_server │ │ │ ├── rkaiq_tool_ae.h │ │ │ ├── rkaiq_tool_anr.h │ │ │ ├── rkaiq_tool_imgproc.h │ │ │ ├── rkaiq_tool_sharp.h │ │ │ ├── rkaiq_tool_sysctl.h │ │ │ └── socket_server.h │ │ ├── iq_parser │ │ │ ├── RkAiqCalibApi.h │ │ │ ├── RkAiqCalibDbTypes.h │ │ │ ├── RkAiqCalibDbTypesIsp20.h │ │ │ └── RkAiqCalibDbTypesIsp21.h │ │ ├── iq_parser_v2 │ │ │ ├── RkAiqCalibDbTypesV2.h │ │ │ ├── RkAiqCalibDbV2.h │ │ │ ├── RkAiqCalibDbV2Helper.h │ │ │ ├── RkAiqCalibDbV2TypesIsp20.h │ │ │ ├── RkAiqCalibDbV2TypesIsp21.h │ │ │ ├── RkAiqCalibDbV2TypesIsp32.h │ │ │ ├── RkAiqCalibDbV2TypesIsp3x.h │ │ │ ├── RkAiqUapitypes.h │ │ │ ├── ablc_head.h │ │ │ ├── ablc_head_V32.h │ │ │ ├── ablc_uapi_head_v32.h │ │ │ ├── adegamma_head.h │ │ │ ├── adehaze_head.h │ │ │ ├── adehaze_uapi_head.h │ │ │ ├── adpcc_head.h │ │ │ ├── adrc_head.h │ │ │ ├── adrc_uapi_head.h │ │ │ ├── aec_head.h │ │ │ ├── aec_uapi_head.h │ │ │ ├── af_head.h │ │ │ ├── agamma_head.h │ │ │ ├── agamma_uapi_head.h │ │ │ ├── agic_head.h │ │ │ ├── aie_head.h │ │ │ ├── alsc_head.h │ │ │ ├── amerge_head.h │ │ │ ├── amerge_uapi_head.h │ │ │ ├── atmo_head.h │ │ │ ├── atmo_uapi_head.h │ │ │ ├── awb_head.h │ │ │ ├── awb_uapi_head.h │ │ │ ├── bayer2dnr_head_v2.h │ │ │ ├── bayer2dnr_head_v23.h │ │ │ ├── bayer2dnr_uapi_head_v23.h │ │ │ ├── bayernr_head_v1.h │ │ │ ├── bayernr_head_v2.h │ │ │ ├── bayertnr_head_v2.h │ │ │ ├── bayertnr_head_v23.h │ │ │ ├── bayertnr_uapi_head_v23.h │ │ │ ├── cac_head.h │ │ │ ├── ccm_head.h │ │ │ ├── ccm_uapi_head.h │ │ │ ├── cgc_head.h │ │ │ ├── cnr_head_v1.h │ │ │ ├── cnr_head_v2.h │ │ │ ├── cnr_head_v30.h │ │ │ ├── cnr_uapi_head_v30.h │ │ │ ├── cproc_head.h │ │ │ ├── cpsl_head.h │ │ │ ├── csm_head.h │ │ │ ├── debayer_head.h │ │ │ ├── edgefilter_head_v1.h │ │ │ ├── eis_head.h │ │ │ ├── fec_head.h │ │ │ ├── gain_head_v2.h │ │ │ ├── gain_uapi_head_v2.h │ │ │ ├── j2s │ │ │ │ ├── cJSON.h │ │ │ │ ├── cJSON_Utils.h │ │ │ │ ├── common.h │ │ │ │ └── j2s.h │ │ │ ├── ldch_head.h │ │ │ ├── lut3d_head.h │ │ │ ├── mfnr_head_v1.h │ │ │ ├── moduleinfo_head.h │ │ │ ├── orb_head.h │ │ │ ├── sensorinfo_head.h │ │ │ ├── sharp_head_v1.h │ │ │ ├── sharp_head_v3.h │ │ │ ├── sharp_head_v33.h │ │ │ ├── sharp_head_v4.h │ │ │ ├── sharp_uapi_head_v33.h │ │ │ ├── sys_static_cfg_head.h │ │ │ ├── thumbnails_head.h │ │ │ ├── uvnr_head_v1.h │ │ │ ├── ynr_head_v1.h │ │ │ ├── ynr_head_v2.h │ │ │ ├── ynr_head_v22.h │ │ │ ├── ynr_head_v3.h │ │ │ └── ynr_uapi_head_v22.h │ │ ├── smartIr │ │ │ └── rk_smart_ir_api.h │ │ ├── uAPI2 │ │ │ ├── rk_aiq_user_api2_a3dlut.h │ │ │ ├── rk_aiq_user_api2_abayer2dnr_v2.h │ │ │ ├── rk_aiq_user_api2_abayer2dnr_v23.h │ │ │ ├── rk_aiq_user_api2_abayernr_v2.h │ │ │ ├── rk_aiq_user_api2_abayertnr_v2.h │ │ │ ├── rk_aiq_user_api2_abayertnr_v23.h │ │ │ ├── rk_aiq_user_api2_ablc.h │ │ │ ├── rk_aiq_user_api2_ablc_v32.h │ │ │ ├── rk_aiq_user_api2_acac.h │ │ │ ├── rk_aiq_user_api2_accm.h │ │ │ ├── rk_aiq_user_api2_acgc.h │ │ │ ├── rk_aiq_user_api2_acnr_v1.h │ │ │ ├── rk_aiq_user_api2_acnr_v2.h │ │ │ ├── rk_aiq_user_api2_acnr_v30.h │ │ │ ├── rk_aiq_user_api2_acp.h │ │ │ ├── rk_aiq_user_api2_acsm.h │ │ │ ├── rk_aiq_user_api2_adebayer.h │ │ │ ├── rk_aiq_user_api2_adegamma.h │ │ │ ├── rk_aiq_user_api2_adehaze.h │ │ │ ├── rk_aiq_user_api2_adpcc.h │ │ │ ├── rk_aiq_user_api2_adrc.h │ │ │ ├── rk_aiq_user_api2_ae.h │ │ │ ├── rk_aiq_user_api2_af.h │ │ │ ├── rk_aiq_user_api2_afec.h │ │ │ ├── rk_aiq_user_api2_again_v2.h │ │ │ ├── rk_aiq_user_api2_agamma.h │ │ │ ├── rk_aiq_user_api2_agic.h │ │ │ ├── rk_aiq_user_api2_aie.h │ │ │ ├── rk_aiq_user_api2_aldch.h │ │ │ ├── rk_aiq_user_api2_aldch_v21.h │ │ │ ├── rk_aiq_user_api2_alsc.h │ │ │ ├── rk_aiq_user_api2_amerge.h │ │ │ ├── rk_aiq_user_api2_anr.h │ │ │ ├── rk_aiq_user_api2_asharp_v3.h │ │ │ ├── rk_aiq_user_api2_asharp_v33.h │ │ │ ├── rk_aiq_user_api2_asharp_v4.h │ │ │ ├── rk_aiq_user_api2_atmo.h │ │ │ ├── rk_aiq_user_api2_awb.h │ │ │ ├── rk_aiq_user_api2_aynr_v2.h │ │ │ ├── rk_aiq_user_api2_aynr_v22.h │ │ │ ├── rk_aiq_user_api2_aynr_v3.h │ │ │ ├── rk_aiq_user_api2_camgroup.h │ │ │ ├── rk_aiq_user_api2_custom_ae.h │ │ │ ├── rk_aiq_user_api2_custom_awb.h │ │ │ ├── rk_aiq_user_api2_custom_awb_type_v32.h │ │ │ ├── rk_aiq_user_api2_custom_awb_type_v3x.h │ │ │ ├── rk_aiq_user_api2_debug.h │ │ │ ├── rk_aiq_user_api2_helper.h │ │ │ ├── rk_aiq_user_api2_imgproc.h │ │ │ ├── rk_aiq_user_api2_sysctl.h │ │ │ ├── rk_aiq_user_api2_wrapper.h │ │ │ └── rk_aiq_user_api_common.h │ │ └── xcore │ │ │ └── base │ │ │ ├── xcam_buffer.h │ │ │ ├── xcam_common.h │ │ │ └── xcam_defs.h │ ├── rkaudio_preprocess.h │ ├── rkaudio_sed.h │ ├── rkbar_scan_api.h │ ├── rkdemuxer.h │ ├── rkmuxer.h │ ├── rknn │ │ ├── mnist.h │ │ └── postprocess.h │ ├── rockchip │ │ ├── mpp_buffer.h │ │ ├── mpp_err.h │ │ ├── mpp_frame.h │ │ ├── mpp_meta.h │ │ ├── mpp_packet.h │ │ ├── mpp_rc_api.h │ │ ├── mpp_rc_defs.h │ │ ├── mpp_task.h │ │ ├── rk_mpi.h │ │ ├── rk_mpi_cmd.h │ │ ├── rk_mpi_mb_cmd.h │ │ ├── rk_type.h │ │ ├── rk_vdec_cfg.h │ │ ├── rk_vdec_cmd.h │ │ ├── rk_venc_cfg.h │ │ ├── rk_venc_cmd.h │ │ ├── rk_venc_rc.h │ │ ├── rk_venc_ref.h │ │ ├── vpu.h │ │ └── vpu_api.h │ ├── rockiva │ │ ├── rockiva_ba_api.h │ │ ├── rockiva_common.h │ │ ├── rockiva_det_api.h │ │ ├── rockiva_face_api.h │ │ └── rockiva_image.h │ ├── rockive │ │ ├── ivs_md.h │ │ ├── rk_comm_ive.h │ │ ├── rk_ive.h │ │ ├── rk_md.h │ │ └── rk_mpi_ive.h │ ├── rtsp_demo.h │ ├── skv.h │ ├── xf86drm.h │ └── xf86drmMode.h ├── lib │ ├── cmake │ │ └── opencv4 │ │ │ ├── OpenCVConfig-version.cmake │ │ │ ├── OpenCVConfig.cmake │ │ │ ├── OpenCVModules-release.cmake │ │ │ └── OpenCVModules.cmake │ ├── face_mask_classify.data │ ├── face_quality_v2.data │ ├── libdrm.so.2 │ ├── libdrm.so.2.4.0 │ ├── libdrm_rockchip.so.1 │ ├── libdrm_rockchip.so.1.0.0 │ ├── libiconv.so.2 │ ├── libiconv.so.2.6.1 │ ├── libkms.so.1 │ ├── libkms.so.1.0.0 │ ├── librockchip_mpp.so.0 │ ├── librockchip_mpp.so.1 │ ├── libz.so.1 │ ├── object_detection_ipc_cls7.data │ ├── object_detection_ipc_cls7_v.data │ ├── object_detection_pfp.data │ ├── object_detection_pfp_896x512.data │ └── pkgconfig │ │ ├── libdrm.pc │ │ ├── libdrm_rockchip.pc │ │ └── libkms.pc ├── model │ └── mnist.rknn └── src │ ├── luckfox_mpi.cc │ ├── main.cc │ └── mnist.cc ├── README.md ├── doc ├── MNIST-rtsp.jpg ├── framebuffer-badapple.jpg ├── framebuffer-pico-pin.jpg └── framebuffer-st7735-pin.jpg ├── framebuffer ├── bad-apple-160x128.mp4 ├── rv1106g-luckfox-pico-pro-max.dts └── st7735test.c ├── rkmpi ├── CMakeLists.txt ├── luckfox_mpi.cc └── rkmpi-test.cc ├── rkrtsp ├── CMakeLists.txt ├── luckfox_mpi.cc └── rkrtsp-test.cc ├── sources ├── 3rdparty │ ├── CMakeLists.txt │ ├── allocator │ │ ├── dma │ │ │ ├── dma_alloc.cpp │ │ │ └── dma_alloc.h │ │ └── drm │ │ │ ├── drm.h │ │ │ ├── drm_alloc.cpp │ │ │ ├── drm_alloc.h │ │ │ ├── drm_fourcc.h │ │ │ ├── drm_mode.h │ │ │ └── xf86drm.h │ ├── jpeg_turbo │ │ ├── LICENSE.md │ │ └── include │ │ │ ├── jconfig.h │ │ │ ├── jerror.h │ │ │ ├── jmorecfg.h │ │ │ ├── jpeglib.h │ │ │ └── turbojpeg.h │ ├── librga │ │ ├── README.md │ │ └── include │ │ │ ├── GrallocOps.h │ │ │ ├── RgaApi.h │ │ │ ├── RgaMutex.h │ │ │ ├── RgaSingleton.h │ │ │ ├── RgaUtils.h │ │ │ ├── RockchipRga.h │ │ │ ├── drmrga.h │ │ │ ├── im2d.h │ │ │ ├── im2d.hpp │ │ │ ├── im2d_buffer.h │ │ │ ├── im2d_common.h │ │ │ ├── im2d_expand.h │ │ │ ├── im2d_mpi.h │ │ │ ├── im2d_single.h │ │ │ ├── im2d_task.h │ │ │ ├── im2d_type.h │ │ │ ├── im2d_version.h │ │ │ └── rga.h │ ├── opencl │ │ └── libopencl-stub │ │ │ ├── Android.mk │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── include │ │ │ ├── CL │ │ │ │ ├── cl.h │ │ │ │ ├── cl_d3d10.h │ │ │ │ ├── cl_d3d11.h │ │ │ │ ├── cl_dx9_media_sharing.h │ │ │ │ ├── cl_dx9_media_sharing_intel.h │ │ │ │ ├── cl_egl.h │ │ │ │ ├── cl_ext.h │ │ │ │ ├── cl_ext_intel.h │ │ │ │ ├── cl_gl.h │ │ │ │ ├── cl_gl_ext.h │ │ │ │ ├── cl_half.h │ │ │ │ ├── cl_icd.h │ │ │ │ ├── cl_platform.h │ │ │ │ ├── cl_va_api_media_sharing_intel.h │ │ │ │ ├── cl_version.h │ │ │ │ └── opencl.h │ │ │ └── libopencl.h │ │ │ └── src │ │ │ └── libopencl.cc │ ├── opencv │ │ ├── opencv-android-sdk-build │ │ │ ├── apk │ │ │ │ └── readme.txt │ │ │ └── sdk │ │ │ │ ├── etc │ │ │ │ ├── haarcascades │ │ │ │ │ ├── haarcascade_eye.xml │ │ │ │ │ ├── haarcascade_eye_tree_eyeglasses.xml │ │ │ │ │ ├── haarcascade_frontalcatface.xml │ │ │ │ │ ├── haarcascade_frontalcatface_extended.xml │ │ │ │ │ ├── haarcascade_frontalface_alt.xml │ │ │ │ │ ├── haarcascade_frontalface_alt2.xml │ │ │ │ │ ├── haarcascade_frontalface_alt_tree.xml │ │ │ │ │ ├── haarcascade_frontalface_default.xml │ │ │ │ │ ├── haarcascade_fullbody.xml │ │ │ │ │ ├── haarcascade_lefteye_2splits.xml │ │ │ │ │ ├── haarcascade_licence_plate_rus_16stages.xml │ │ │ │ │ ├── haarcascade_lowerbody.xml │ │ │ │ │ ├── haarcascade_profileface.xml │ │ │ │ │ ├── haarcascade_righteye_2splits.xml │ │ │ │ │ ├── haarcascade_russian_plate_number.xml │ │ │ │ │ ├── haarcascade_smile.xml │ │ │ │ │ └── haarcascade_upperbody.xml │ │ │ │ ├── lbpcascades │ │ │ │ │ ├── lbpcascade_frontalcatface.xml │ │ │ │ │ ├── lbpcascade_frontalface.xml │ │ │ │ │ ├── lbpcascade_frontalface_improved.xml │ │ │ │ │ ├── lbpcascade_profileface.xml │ │ │ │ │ └── lbpcascade_silverware.xml │ │ │ │ ├── licenses │ │ │ │ │ ├── SoftFloat-COPYING.txt │ │ │ │ │ ├── cpufeatures-LICENSE │ │ │ │ │ ├── cpufeatures-README.md │ │ │ │ │ ├── jasper-LICENSE │ │ │ │ │ ├── jasper-README │ │ │ │ │ ├── jasper-copyright │ │ │ │ │ ├── libjpeg-turbo-LICENSE.md │ │ │ │ │ ├── libjpeg-turbo-README.ijg │ │ │ │ │ ├── libjpeg-turbo-README.md │ │ │ │ │ ├── libpng-LICENSE │ │ │ │ │ ├── libpng-README │ │ │ │ │ ├── libtiff-COPYRIGHT │ │ │ │ │ ├── openexr-AUTHORS.ilmbase │ │ │ │ │ ├── openexr-AUTHORS.openexr │ │ │ │ │ ├── openexr-LICENSE │ │ │ │ │ ├── openexr-fix_msvc2013_errors.patch │ │ │ │ │ ├── protobuf-LICENSE │ │ │ │ │ ├── protobuf-README.md │ │ │ │ │ ├── quirc-LICENSE │ │ │ │ │ └── zlib-README │ │ │ │ ├── valgrind.supp │ │ │ │ └── valgrind_3rdparty.supp │ │ │ │ └── native │ │ │ │ └── jni │ │ │ │ ├── OpenCV-arm64-v8a.mk │ │ │ │ ├── OpenCV-armeabi-v7a.mk │ │ │ │ ├── OpenCV.mk │ │ │ │ ├── OpenCVConfig-version.cmake │ │ │ │ ├── OpenCVConfig.cmake │ │ │ │ ├── abi-arm64-v8a │ │ │ │ ├── OpenCVConfig-version.cmake │ │ │ │ ├── OpenCVConfig.cmake │ │ │ │ ├── OpenCVModules-release.cmake │ │ │ │ └── OpenCVModules.cmake │ │ │ │ ├── abi-armeabi-v7a │ │ │ │ ├── OpenCVConfig-version.cmake │ │ │ │ ├── OpenCVConfig.cmake │ │ │ │ ├── OpenCVModules-release.cmake │ │ │ │ └── OpenCVModules.cmake │ │ │ │ ├── android.toolchain.cmake │ │ │ │ └── include │ │ │ │ ├── opencv │ │ │ │ ├── cv.h │ │ │ │ ├── cv.hpp │ │ │ │ ├── cvaux.h │ │ │ │ ├── cvaux.hpp │ │ │ │ ├── cvwimage.h │ │ │ │ ├── cxcore.h │ │ │ │ ├── cxcore.hpp │ │ │ │ ├── cxeigen.hpp │ │ │ │ ├── cxmisc.h │ │ │ │ ├── highgui.h │ │ │ │ └── ml.h │ │ │ │ └── opencv2 │ │ │ │ ├── calib3d.hpp │ │ │ │ ├── calib3d │ │ │ │ ├── calib3d.hpp │ │ │ │ └── calib3d_c.h │ │ │ │ ├── core.hpp │ │ │ │ ├── core │ │ │ │ ├── affine.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── bindings_utils.hpp │ │ │ │ ├── bufferpool.hpp │ │ │ │ ├── check.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── core_c.h │ │ │ │ ├── cuda.hpp │ │ │ │ ├── cuda.inl.hpp │ │ │ │ ├── cuda │ │ │ │ │ ├── block.hpp │ │ │ │ │ ├── border_interpolate.hpp │ │ │ │ │ ├── color.hpp │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── datamov_utils.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── color_detail.hpp │ │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ │ │ ├── transform_detail.hpp │ │ │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ │ │ └── vec_distance_detail.hpp │ │ │ │ │ ├── dynamic_smem.hpp │ │ │ │ │ ├── emulation.hpp │ │ │ │ │ ├── filters.hpp │ │ │ │ │ ├── funcattrib.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── saturate_cast.hpp │ │ │ │ │ ├── scan.hpp │ │ │ │ │ ├── simd_functions.hpp │ │ │ │ │ ├── transform.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── utility.hpp │ │ │ │ │ ├── vec_distance.hpp │ │ │ │ │ ├── vec_math.hpp │ │ │ │ │ ├── vec_traits.hpp │ │ │ │ │ ├── warp.hpp │ │ │ │ │ ├── warp_reduce.hpp │ │ │ │ │ └── warp_shuffle.hpp │ │ │ │ ├── cuda_stream_accessor.hpp │ │ │ │ ├── cuda_types.hpp │ │ │ │ ├── cv_cpu_dispatch.h │ │ │ │ ├── cv_cpu_helper.h │ │ │ │ ├── cvdef.h │ │ │ │ ├── cvstd.hpp │ │ │ │ ├── cvstd.inl.hpp │ │ │ │ ├── directx.hpp │ │ │ │ ├── eigen.hpp │ │ │ │ ├── fast_math.hpp │ │ │ │ ├── hal │ │ │ │ │ ├── hal.hpp │ │ │ │ │ ├── interface.h │ │ │ │ │ ├── intrin.hpp │ │ │ │ │ ├── intrin_avx.hpp │ │ │ │ │ ├── intrin_cpp.hpp │ │ │ │ │ ├── intrin_forward.hpp │ │ │ │ │ ├── intrin_neon.hpp │ │ │ │ │ ├── intrin_sse.hpp │ │ │ │ │ ├── intrin_sse_em.hpp │ │ │ │ │ └── intrin_vsx.hpp │ │ │ │ ├── ippasync.hpp │ │ │ │ ├── mat.hpp │ │ │ │ ├── mat.inl.hpp │ │ │ │ ├── matx.hpp │ │ │ │ ├── neon_utils.hpp │ │ │ │ ├── ocl.hpp │ │ │ │ ├── ocl_genbase.hpp │ │ │ │ ├── opencl │ │ │ │ │ ├── ocl_defs.hpp │ │ │ │ │ ├── opencl_info.hpp │ │ │ │ │ ├── opencl_svm.hpp │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── autogenerated │ │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ │ │ ├── opengl.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── optim.hpp │ │ │ │ ├── ovx.hpp │ │ │ │ ├── persistence.hpp │ │ │ │ ├── ptr.inl.hpp │ │ │ │ ├── saturate.hpp │ │ │ │ ├── softfloat.hpp │ │ │ │ ├── sse_utils.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── types.hpp │ │ │ │ ├── types_c.h │ │ │ │ ├── utility.hpp │ │ │ │ ├── utils │ │ │ │ │ ├── filesystem.hpp │ │ │ │ │ ├── logger.defines.hpp │ │ │ │ │ ├── logger.hpp │ │ │ │ │ └── trace.hpp │ │ │ │ ├── va_intel.hpp │ │ │ │ ├── version.hpp │ │ │ │ ├── vsx_utils.hpp │ │ │ │ └── wimage.hpp │ │ │ │ ├── cvconfig.h │ │ │ │ ├── features2d.hpp │ │ │ │ ├── features2d │ │ │ │ ├── features2d.hpp │ │ │ │ └── hal │ │ │ │ │ └── interface.h │ │ │ │ ├── imgcodecs.hpp │ │ │ │ ├── imgcodecs │ │ │ │ ├── imgcodecs.hpp │ │ │ │ ├── imgcodecs_c.h │ │ │ │ └── ios.h │ │ │ │ ├── imgproc.hpp │ │ │ │ ├── imgproc │ │ │ │ ├── detail │ │ │ │ │ └── distortion_model.hpp │ │ │ │ ├── hal │ │ │ │ │ ├── hal.hpp │ │ │ │ │ └── interface.h │ │ │ │ ├── imgproc.hpp │ │ │ │ ├── imgproc_c.h │ │ │ │ └── types_c.h │ │ │ │ ├── opencv.hpp │ │ │ │ └── opencv_modules.hpp │ │ ├── opencv-linux-aarch64 │ │ │ ├── bin │ │ │ │ ├── opencv_version │ │ │ │ └── setup_vars_opencv3.sh │ │ │ ├── include │ │ │ │ ├── opencv │ │ │ │ │ ├── cv.h │ │ │ │ │ ├── cv.hpp │ │ │ │ │ ├── cvaux.h │ │ │ │ │ ├── cvaux.hpp │ │ │ │ │ ├── cvwimage.h │ │ │ │ │ ├── cxcore.h │ │ │ │ │ ├── cxcore.hpp │ │ │ │ │ ├── cxeigen.hpp │ │ │ │ │ ├── cxmisc.h │ │ │ │ │ ├── highgui.h │ │ │ │ │ └── ml.h │ │ │ │ └── opencv2 │ │ │ │ │ ├── calib3d.hpp │ │ │ │ │ ├── calib3d │ │ │ │ │ ├── calib3d.hpp │ │ │ │ │ └── calib3d_c.h │ │ │ │ │ ├── core.hpp │ │ │ │ │ ├── core │ │ │ │ │ ├── affine.hpp │ │ │ │ │ ├── base.hpp │ │ │ │ │ ├── bindings_utils.hpp │ │ │ │ │ ├── bufferpool.hpp │ │ │ │ │ ├── check.hpp │ │ │ │ │ ├── core.hpp │ │ │ │ │ ├── core_c.h │ │ │ │ │ ├── cuda.hpp │ │ │ │ │ ├── cuda.inl.hpp │ │ │ │ │ ├── cuda │ │ │ │ │ │ ├── block.hpp │ │ │ │ │ │ ├── border_interpolate.hpp │ │ │ │ │ │ ├── color.hpp │ │ │ │ │ │ ├── common.hpp │ │ │ │ │ │ ├── datamov_utils.hpp │ │ │ │ │ │ ├── detail │ │ │ │ │ │ │ ├── color_detail.hpp │ │ │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ │ │ │ ├── transform_detail.hpp │ │ │ │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ │ │ │ └── vec_distance_detail.hpp │ │ │ │ │ │ ├── dynamic_smem.hpp │ │ │ │ │ │ ├── emulation.hpp │ │ │ │ │ │ ├── filters.hpp │ │ │ │ │ │ ├── funcattrib.hpp │ │ │ │ │ │ ├── functional.hpp │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ │ ├── saturate_cast.hpp │ │ │ │ │ │ ├── scan.hpp │ │ │ │ │ │ ├── simd_functions.hpp │ │ │ │ │ │ ├── transform.hpp │ │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ │ ├── utility.hpp │ │ │ │ │ │ ├── vec_distance.hpp │ │ │ │ │ │ ├── vec_math.hpp │ │ │ │ │ │ ├── vec_traits.hpp │ │ │ │ │ │ ├── warp.hpp │ │ │ │ │ │ ├── warp_reduce.hpp │ │ │ │ │ │ └── warp_shuffle.hpp │ │ │ │ │ ├── cuda_stream_accessor.hpp │ │ │ │ │ ├── cuda_types.hpp │ │ │ │ │ ├── cv_cpu_dispatch.h │ │ │ │ │ ├── cv_cpu_helper.h │ │ │ │ │ ├── cvdef.h │ │ │ │ │ ├── cvstd.hpp │ │ │ │ │ ├── cvstd.inl.hpp │ │ │ │ │ ├── directx.hpp │ │ │ │ │ ├── eigen.hpp │ │ │ │ │ ├── fast_math.hpp │ │ │ │ │ ├── hal │ │ │ │ │ │ ├── hal.hpp │ │ │ │ │ │ ├── interface.h │ │ │ │ │ │ ├── intrin.hpp │ │ │ │ │ │ ├── intrin_avx.hpp │ │ │ │ │ │ ├── intrin_cpp.hpp │ │ │ │ │ │ ├── intrin_forward.hpp │ │ │ │ │ │ ├── intrin_neon.hpp │ │ │ │ │ │ ├── intrin_sse.hpp │ │ │ │ │ │ ├── intrin_sse_em.hpp │ │ │ │ │ │ └── intrin_vsx.hpp │ │ │ │ │ ├── ippasync.hpp │ │ │ │ │ ├── mat.hpp │ │ │ │ │ ├── mat.inl.hpp │ │ │ │ │ ├── matx.hpp │ │ │ │ │ ├── neon_utils.hpp │ │ │ │ │ ├── ocl.hpp │ │ │ │ │ ├── ocl_genbase.hpp │ │ │ │ │ ├── opencl │ │ │ │ │ │ ├── ocl_defs.hpp │ │ │ │ │ │ ├── opencl_info.hpp │ │ │ │ │ │ ├── opencl_svm.hpp │ │ │ │ │ │ └── runtime │ │ │ │ │ │ │ ├── autogenerated │ │ │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ │ │ │ ├── opengl.hpp │ │ │ │ │ ├── operations.hpp │ │ │ │ │ ├── optim.hpp │ │ │ │ │ ├── ovx.hpp │ │ │ │ │ ├── persistence.hpp │ │ │ │ │ ├── ptr.inl.hpp │ │ │ │ │ ├── saturate.hpp │ │ │ │ │ ├── softfloat.hpp │ │ │ │ │ ├── sse_utils.hpp │ │ │ │ │ ├── traits.hpp │ │ │ │ │ ├── types.hpp │ │ │ │ │ ├── types_c.h │ │ │ │ │ ├── utility.hpp │ │ │ │ │ ├── utils │ │ │ │ │ │ ├── filesystem.hpp │ │ │ │ │ │ ├── logger.defines.hpp │ │ │ │ │ │ ├── logger.hpp │ │ │ │ │ │ └── trace.hpp │ │ │ │ │ ├── va_intel.hpp │ │ │ │ │ ├── version.hpp │ │ │ │ │ ├── vsx_utils.hpp │ │ │ │ │ └── wimage.hpp │ │ │ │ │ ├── cvconfig.h │ │ │ │ │ ├── dnn.hpp │ │ │ │ │ ├── dnn │ │ │ │ │ ├── all_layers.hpp │ │ │ │ │ ├── dict.hpp │ │ │ │ │ ├── dnn.hpp │ │ │ │ │ ├── dnn.inl.hpp │ │ │ │ │ ├── layer.details.hpp │ │ │ │ │ ├── layer.hpp │ │ │ │ │ └── shape_utils.hpp │ │ │ │ │ ├── features2d.hpp │ │ │ │ │ ├── features2d │ │ │ │ │ ├── features2d.hpp │ │ │ │ │ └── hal │ │ │ │ │ │ └── interface.h │ │ │ │ │ ├── flann.hpp │ │ │ │ │ ├── flann │ │ │ │ │ ├── all_indices.h │ │ │ │ │ ├── allocator.h │ │ │ │ │ ├── any.h │ │ │ │ │ ├── autotuned_index.h │ │ │ │ │ ├── composite_index.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── defines.h │ │ │ │ │ ├── dist.h │ │ │ │ │ ├── dummy.h │ │ │ │ │ ├── dynamic_bitset.h │ │ │ │ │ ├── flann.hpp │ │ │ │ │ ├── flann_base.hpp │ │ │ │ │ ├── general.h │ │ │ │ │ ├── ground_truth.h │ │ │ │ │ ├── hdf5.h │ │ │ │ │ ├── heap.h │ │ │ │ │ ├── hierarchical_clustering_index.h │ │ │ │ │ ├── index_testing.h │ │ │ │ │ ├── kdtree_index.h │ │ │ │ │ ├── kdtree_single_index.h │ │ │ │ │ ├── kmeans_index.h │ │ │ │ │ ├── linear_index.h │ │ │ │ │ ├── logger.h │ │ │ │ │ ├── lsh_index.h │ │ │ │ │ ├── lsh_table.h │ │ │ │ │ ├── matrix.h │ │ │ │ │ ├── miniflann.hpp │ │ │ │ │ ├── nn_index.h │ │ │ │ │ ├── object_factory.h │ │ │ │ │ ├── params.h │ │ │ │ │ ├── random.h │ │ │ │ │ ├── result_set.h │ │ │ │ │ ├── sampling.h │ │ │ │ │ ├── saving.h │ │ │ │ │ ├── simplex_downhill.h │ │ │ │ │ └── timer.h │ │ │ │ │ ├── highgui.hpp │ │ │ │ │ ├── highgui │ │ │ │ │ ├── highgui.hpp │ │ │ │ │ └── highgui_c.h │ │ │ │ │ ├── imgcodecs.hpp │ │ │ │ │ ├── imgcodecs │ │ │ │ │ ├── imgcodecs.hpp │ │ │ │ │ ├── imgcodecs_c.h │ │ │ │ │ └── ios.h │ │ │ │ │ ├── imgproc.hpp │ │ │ │ │ ├── imgproc │ │ │ │ │ ├── detail │ │ │ │ │ │ └── distortion_model.hpp │ │ │ │ │ ├── hal │ │ │ │ │ │ ├── hal.hpp │ │ │ │ │ │ └── interface.h │ │ │ │ │ ├── imgproc.hpp │ │ │ │ │ ├── imgproc_c.h │ │ │ │ │ └── types_c.h │ │ │ │ │ ├── ml.hpp │ │ │ │ │ ├── ml │ │ │ │ │ ├── ml.hpp │ │ │ │ │ └── ml.inl.hpp │ │ │ │ │ ├── objdetect.hpp │ │ │ │ │ ├── objdetect │ │ │ │ │ ├── detection_based_tracker.hpp │ │ │ │ │ ├── objdetect.hpp │ │ │ │ │ └── objdetect_c.h │ │ │ │ │ ├── opencv.hpp │ │ │ │ │ ├── opencv_modules.hpp │ │ │ │ │ ├── photo.hpp │ │ │ │ │ ├── photo │ │ │ │ │ ├── cuda.hpp │ │ │ │ │ ├── photo.hpp │ │ │ │ │ └── photo_c.h │ │ │ │ │ ├── shape.hpp │ │ │ │ │ ├── shape │ │ │ │ │ ├── emdL1.hpp │ │ │ │ │ ├── hist_cost.hpp │ │ │ │ │ ├── shape.hpp │ │ │ │ │ ├── shape_distance.hpp │ │ │ │ │ └── shape_transformer.hpp │ │ │ │ │ ├── stitching.hpp │ │ │ │ │ ├── stitching │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── autocalib.hpp │ │ │ │ │ │ ├── blenders.hpp │ │ │ │ │ │ ├── camera.hpp │ │ │ │ │ │ ├── exposure_compensate.hpp │ │ │ │ │ │ ├── matchers.hpp │ │ │ │ │ │ ├── motion_estimators.hpp │ │ │ │ │ │ ├── seam_finders.hpp │ │ │ │ │ │ ├── timelapsers.hpp │ │ │ │ │ │ ├── util.hpp │ │ │ │ │ │ ├── util_inl.hpp │ │ │ │ │ │ ├── warpers.hpp │ │ │ │ │ │ └── warpers_inl.hpp │ │ │ │ │ └── warpers.hpp │ │ │ │ │ ├── superres.hpp │ │ │ │ │ ├── superres │ │ │ │ │ └── optical_flow.hpp │ │ │ │ │ ├── video.hpp │ │ │ │ │ ├── video │ │ │ │ │ ├── background_segm.hpp │ │ │ │ │ ├── tracking.hpp │ │ │ │ │ ├── tracking_c.h │ │ │ │ │ └── video.hpp │ │ │ │ │ ├── videoio.hpp │ │ │ │ │ ├── videoio │ │ │ │ │ ├── cap_ios.h │ │ │ │ │ ├── videoio.hpp │ │ │ │ │ └── videoio_c.h │ │ │ │ │ ├── videostab.hpp │ │ │ │ │ └── videostab │ │ │ │ │ ├── deblurring.hpp │ │ │ │ │ ├── fast_marching.hpp │ │ │ │ │ ├── fast_marching_inl.hpp │ │ │ │ │ ├── frame_source.hpp │ │ │ │ │ ├── global_motion.hpp │ │ │ │ │ ├── inpainting.hpp │ │ │ │ │ ├── log.hpp │ │ │ │ │ ├── motion_core.hpp │ │ │ │ │ ├── motion_stabilizing.hpp │ │ │ │ │ ├── optical_flow.hpp │ │ │ │ │ ├── outlier_rejection.hpp │ │ │ │ │ ├── ring_buffer.hpp │ │ │ │ │ ├── stabilizer.hpp │ │ │ │ │ └── wobble_suppression.hpp │ │ │ ├── lib │ │ │ │ └── pkgconfig │ │ │ │ │ └── opencv.pc │ │ │ └── share │ │ │ │ └── OpenCV │ │ │ │ ├── OpenCVConfig-version.cmake │ │ │ │ ├── OpenCVConfig.cmake │ │ │ │ ├── OpenCVModules-release.cmake │ │ │ │ ├── OpenCVModules.cmake │ │ │ │ ├── haarcascades │ │ │ │ ├── haarcascade_eye.xml │ │ │ │ ├── haarcascade_eye_tree_eyeglasses.xml │ │ │ │ ├── haarcascade_frontalcatface.xml │ │ │ │ ├── haarcascade_frontalcatface_extended.xml │ │ │ │ ├── haarcascade_frontalface_alt.xml │ │ │ │ ├── haarcascade_frontalface_alt2.xml │ │ │ │ ├── haarcascade_frontalface_alt_tree.xml │ │ │ │ ├── haarcascade_frontalface_default.xml │ │ │ │ ├── haarcascade_fullbody.xml │ │ │ │ ├── haarcascade_lefteye_2splits.xml │ │ │ │ ├── haarcascade_licence_plate_rus_16stages.xml │ │ │ │ ├── haarcascade_lowerbody.xml │ │ │ │ ├── haarcascade_profileface.xml │ │ │ │ ├── haarcascade_righteye_2splits.xml │ │ │ │ ├── haarcascade_russian_plate_number.xml │ │ │ │ ├── haarcascade_smile.xml │ │ │ │ └── haarcascade_upperbody.xml │ │ │ │ ├── lbpcascades │ │ │ │ ├── lbpcascade_frontalcatface.xml │ │ │ │ ├── lbpcascade_frontalface.xml │ │ │ │ ├── lbpcascade_frontalface_improved.xml │ │ │ │ ├── lbpcascade_profileface.xml │ │ │ │ └── lbpcascade_silverware.xml │ │ │ │ ├── licenses │ │ │ │ ├── SoftFloat-COPYING.txt │ │ │ │ ├── jasper-LICENSE │ │ │ │ ├── jasper-README │ │ │ │ ├── jasper-copyright │ │ │ │ ├── libjpeg-turbo-LICENSE.md │ │ │ │ ├── libjpeg-turbo-README.ijg │ │ │ │ ├── libjpeg-turbo-README.md │ │ │ │ ├── libpng-LICENSE │ │ │ │ ├── libpng-README │ │ │ │ ├── libpng-opencv-libpng.patch │ │ │ │ ├── libtiff-COPYRIGHT │ │ │ │ ├── opencl-headers-LICENSE.txt │ │ │ │ ├── openexr-AUTHORS.ilmbase │ │ │ │ ├── openexr-AUTHORS.openexr │ │ │ │ ├── openexr-LICENSE │ │ │ │ ├── openexr-fix_msvc2013_errors.patch │ │ │ │ ├── protobuf-LICENSE │ │ │ │ ├── protobuf-README.md │ │ │ │ ├── quirc-LICENSE │ │ │ │ └── zlib-README │ │ │ │ ├── valgrind.supp │ │ │ │ └── valgrind_3rdparty.supp │ │ └── opencv-linux-armhf │ │ │ ├── bin │ │ │ ├── opencv_version │ │ │ └── setup_vars_opencv3.sh │ │ │ ├── include │ │ │ ├── opencv │ │ │ │ ├── cv.h │ │ │ │ ├── cv.hpp │ │ │ │ ├── cvaux.h │ │ │ │ ├── cvaux.hpp │ │ │ │ ├── cvwimage.h │ │ │ │ ├── cxcore.h │ │ │ │ ├── cxcore.hpp │ │ │ │ ├── cxeigen.hpp │ │ │ │ ├── cxmisc.h │ │ │ │ ├── highgui.h │ │ │ │ └── ml.h │ │ │ └── opencv2 │ │ │ │ ├── calib3d.hpp │ │ │ │ ├── calib3d │ │ │ │ ├── calib3d.hpp │ │ │ │ └── calib3d_c.h │ │ │ │ ├── core.hpp │ │ │ │ ├── core │ │ │ │ ├── affine.hpp │ │ │ │ ├── base.hpp │ │ │ │ ├── bindings_utils.hpp │ │ │ │ ├── bufferpool.hpp │ │ │ │ ├── check.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── core_c.h │ │ │ │ ├── cuda.hpp │ │ │ │ ├── cuda.inl.hpp │ │ │ │ ├── cuda │ │ │ │ │ ├── block.hpp │ │ │ │ │ ├── border_interpolate.hpp │ │ │ │ │ ├── color.hpp │ │ │ │ │ ├── common.hpp │ │ │ │ │ ├── datamov_utils.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── color_detail.hpp │ │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ │ │ ├── transform_detail.hpp │ │ │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ │ │ └── vec_distance_detail.hpp │ │ │ │ │ ├── dynamic_smem.hpp │ │ │ │ │ ├── emulation.hpp │ │ │ │ │ ├── filters.hpp │ │ │ │ │ ├── funcattrib.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── saturate_cast.hpp │ │ │ │ │ ├── scan.hpp │ │ │ │ │ ├── simd_functions.hpp │ │ │ │ │ ├── transform.hpp │ │ │ │ │ ├── type_traits.hpp │ │ │ │ │ ├── utility.hpp │ │ │ │ │ ├── vec_distance.hpp │ │ │ │ │ ├── vec_math.hpp │ │ │ │ │ ├── vec_traits.hpp │ │ │ │ │ ├── warp.hpp │ │ │ │ │ ├── warp_reduce.hpp │ │ │ │ │ └── warp_shuffle.hpp │ │ │ │ ├── cuda_stream_accessor.hpp │ │ │ │ ├── cuda_types.hpp │ │ │ │ ├── cv_cpu_dispatch.h │ │ │ │ ├── cv_cpu_helper.h │ │ │ │ ├── cvdef.h │ │ │ │ ├── cvstd.hpp │ │ │ │ ├── cvstd.inl.hpp │ │ │ │ ├── directx.hpp │ │ │ │ ├── eigen.hpp │ │ │ │ ├── fast_math.hpp │ │ │ │ ├── hal │ │ │ │ │ ├── hal.hpp │ │ │ │ │ ├── interface.h │ │ │ │ │ ├── intrin.hpp │ │ │ │ │ ├── intrin_avx.hpp │ │ │ │ │ ├── intrin_cpp.hpp │ │ │ │ │ ├── intrin_forward.hpp │ │ │ │ │ ├── intrin_neon.hpp │ │ │ │ │ ├── intrin_sse.hpp │ │ │ │ │ ├── intrin_sse_em.hpp │ │ │ │ │ └── intrin_vsx.hpp │ │ │ │ ├── ippasync.hpp │ │ │ │ ├── mat.hpp │ │ │ │ ├── mat.inl.hpp │ │ │ │ ├── matx.hpp │ │ │ │ ├── neon_utils.hpp │ │ │ │ ├── ocl.hpp │ │ │ │ ├── ocl_genbase.hpp │ │ │ │ ├── opencl │ │ │ │ │ ├── ocl_defs.hpp │ │ │ │ │ ├── opencl_info.hpp │ │ │ │ │ ├── opencl_svm.hpp │ │ │ │ │ └── runtime │ │ │ │ │ │ ├── autogenerated │ │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ │ │ ├── opencl_clamdblas.hpp │ │ │ │ │ │ ├── opencl_clamdfft.hpp │ │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ │ │ ├── opengl.hpp │ │ │ │ ├── operations.hpp │ │ │ │ ├── optim.hpp │ │ │ │ ├── ovx.hpp │ │ │ │ ├── persistence.hpp │ │ │ │ ├── ptr.inl.hpp │ │ │ │ ├── saturate.hpp │ │ │ │ ├── softfloat.hpp │ │ │ │ ├── sse_utils.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── types.hpp │ │ │ │ ├── types_c.h │ │ │ │ ├── utility.hpp │ │ │ │ ├── utils │ │ │ │ │ ├── filesystem.hpp │ │ │ │ │ ├── logger.defines.hpp │ │ │ │ │ ├── logger.hpp │ │ │ │ │ └── trace.hpp │ │ │ │ ├── va_intel.hpp │ │ │ │ ├── version.hpp │ │ │ │ ├── vsx_utils.hpp │ │ │ │ └── wimage.hpp │ │ │ │ ├── cvconfig.h │ │ │ │ ├── features2d.hpp │ │ │ │ ├── features2d │ │ │ │ ├── features2d.hpp │ │ │ │ └── hal │ │ │ │ │ └── interface.h │ │ │ │ ├── imgcodecs.hpp │ │ │ │ ├── imgcodecs │ │ │ │ ├── imgcodecs.hpp │ │ │ │ ├── imgcodecs_c.h │ │ │ │ └── ios.h │ │ │ │ ├── imgproc.hpp │ │ │ │ ├── imgproc │ │ │ │ ├── detail │ │ │ │ │ └── distortion_model.hpp │ │ │ │ ├── hal │ │ │ │ │ ├── hal.hpp │ │ │ │ │ └── interface.h │ │ │ │ ├── imgproc.hpp │ │ │ │ ├── imgproc_c.h │ │ │ │ └── types_c.h │ │ │ │ ├── opencv.hpp │ │ │ │ ├── opencv_modules.hpp │ │ │ │ ├── video.hpp │ │ │ │ └── video │ │ │ │ ├── background_segm.hpp │ │ │ │ ├── tracking.hpp │ │ │ │ ├── tracking_c.h │ │ │ │ └── video.hpp │ │ │ ├── lib │ │ │ └── pkgconfig │ │ │ │ └── opencv.pc │ │ │ └── share │ │ │ └── OpenCV │ │ │ ├── OpenCVConfig-version.cmake │ │ │ ├── OpenCVConfig.cmake │ │ │ ├── OpenCVModules-release.cmake │ │ │ ├── OpenCVModules.cmake │ │ │ ├── haarcascades │ │ │ ├── haarcascade_eye.xml │ │ │ ├── haarcascade_eye_tree_eyeglasses.xml │ │ │ ├── haarcascade_frontalcatface.xml │ │ │ ├── haarcascade_frontalcatface_extended.xml │ │ │ ├── haarcascade_frontalface_alt.xml │ │ │ ├── haarcascade_frontalface_alt2.xml │ │ │ ├── haarcascade_frontalface_alt_tree.xml │ │ │ ├── haarcascade_frontalface_default.xml │ │ │ ├── haarcascade_fullbody.xml │ │ │ ├── haarcascade_lefteye_2splits.xml │ │ │ ├── haarcascade_licence_plate_rus_16stages.xml │ │ │ ├── haarcascade_lowerbody.xml │ │ │ ├── haarcascade_profileface.xml │ │ │ ├── haarcascade_righteye_2splits.xml │ │ │ ├── haarcascade_russian_plate_number.xml │ │ │ ├── haarcascade_smile.xml │ │ │ └── haarcascade_upperbody.xml │ │ │ ├── lbpcascades │ │ │ ├── lbpcascade_frontalcatface.xml │ │ │ ├── lbpcascade_frontalface.xml │ │ │ ├── lbpcascade_frontalface_improved.xml │ │ │ ├── lbpcascade_profileface.xml │ │ │ └── lbpcascade_silverware.xml │ │ │ ├── licenses │ │ │ ├── SoftFloat-COPYING.txt │ │ │ ├── jasper-LICENSE │ │ │ ├── jasper-README │ │ │ ├── jasper-copyright │ │ │ ├── libjpeg-turbo-LICENSE.md │ │ │ ├── libjpeg-turbo-README.ijg │ │ │ ├── libjpeg-turbo-README.md │ │ │ ├── libpng-LICENSE │ │ │ ├── libpng-README │ │ │ ├── libtiff-COPYRIGHT │ │ │ ├── openexr-AUTHORS.ilmbase │ │ │ ├── openexr-AUTHORS.openexr │ │ │ ├── openexr-LICENSE │ │ │ ├── openexr-fix_msvc2013_errors.patch │ │ │ ├── protobuf-LICENSE │ │ │ ├── protobuf-README.md │ │ │ ├── quirc-LICENSE │ │ │ └── zlib-README │ │ │ ├── valgrind.supp │ │ │ └── valgrind_3rdparty.supp │ ├── rknpu2 │ │ └── include │ │ │ ├── Float16.h │ │ │ ├── rknn_api.h │ │ │ ├── rknn_custom_op.h │ │ │ └── rknn_matmul_api.h │ └── stb_image │ │ ├── LICENSE.txt │ │ ├── stb_image.h │ │ └── stb_image_write.h ├── common │ ├── Makefile │ ├── fillimage.c │ ├── isp2.x │ │ ├── Makefile │ │ ├── sample_comm_isp.c │ │ └── sample_comm_isp.h │ ├── isp3.x │ │ ├── Makefile │ │ ├── sample_comm_isp.c │ │ └── sample_comm_isp.h │ ├── loadbmp.c │ ├── loadbmp.h │ ├── rtsp_demo.h │ ├── sample_comm.c │ ├── sample_comm.h │ ├── sample_comm_aenc.c │ ├── sample_comm_ai.c │ ├── sample_comm_ao.c │ ├── sample_comm_avs.c │ ├── sample_comm_iva.c │ ├── sample_comm_ivs.c │ ├── sample_comm_rgn.c │ ├── sample_comm_tde.c │ ├── sample_comm_venc.c │ ├── sample_comm_vi.c │ ├── sample_comm_vo.c │ └── sample_comm_vpss.c ├── include │ ├── aenc_mp3_register.h │ ├── audio_server.h │ ├── iio.h │ ├── libRkScalerApi.h │ ├── libkms │ │ └── libkms.h │ ├── libsync.h │ ├── luckfox_mpi.h │ ├── opencv4 │ │ └── opencv2 │ │ │ ├── core.hpp │ │ │ ├── core │ │ │ ├── affine.hpp │ │ │ ├── async.hpp │ │ │ ├── base.hpp │ │ │ ├── bindings_utils.hpp │ │ │ ├── bufferpool.hpp │ │ │ ├── check.hpp │ │ │ ├── core.hpp │ │ │ ├── core_c.h │ │ │ ├── cuda.hpp │ │ │ ├── cuda.inl.hpp │ │ │ ├── cuda │ │ │ │ ├── block.hpp │ │ │ │ ├── border_interpolate.hpp │ │ │ │ ├── color.hpp │ │ │ │ ├── common.hpp │ │ │ │ ├── datamov_utils.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── color_detail.hpp │ │ │ │ │ ├── reduce.hpp │ │ │ │ │ ├── reduce_key_val.hpp │ │ │ │ │ ├── transform_detail.hpp │ │ │ │ │ ├── type_traits_detail.hpp │ │ │ │ │ └── vec_distance_detail.hpp │ │ │ │ ├── dynamic_smem.hpp │ │ │ │ ├── emulation.hpp │ │ │ │ ├── filters.hpp │ │ │ │ ├── funcattrib.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── reduce.hpp │ │ │ │ ├── saturate_cast.hpp │ │ │ │ ├── scan.hpp │ │ │ │ ├── simd_functions.hpp │ │ │ │ ├── transform.hpp │ │ │ │ ├── type_traits.hpp │ │ │ │ ├── utility.hpp │ │ │ │ ├── vec_distance.hpp │ │ │ │ ├── vec_math.hpp │ │ │ │ ├── vec_traits.hpp │ │ │ │ ├── warp.hpp │ │ │ │ ├── warp_reduce.hpp │ │ │ │ └── warp_shuffle.hpp │ │ │ ├── cuda_stream_accessor.hpp │ │ │ ├── cuda_types.hpp │ │ │ ├── cv_cpu_dispatch.h │ │ │ ├── cv_cpu_helper.h │ │ │ ├── cvdef.h │ │ │ ├── cvstd.hpp │ │ │ ├── cvstd.inl.hpp │ │ │ ├── cvstd_wrapper.hpp │ │ │ ├── detail │ │ │ │ ├── async_promise.hpp │ │ │ │ ├── dispatch_helper.impl.hpp │ │ │ │ └── exception_ptr.hpp │ │ │ ├── directx.hpp │ │ │ ├── dualquaternion.hpp │ │ │ ├── dualquaternion.inl.hpp │ │ │ ├── eigen.hpp │ │ │ ├── fast_math.hpp │ │ │ ├── hal │ │ │ │ ├── hal.hpp │ │ │ │ ├── interface.h │ │ │ │ ├── intrin.hpp │ │ │ │ ├── intrin_avx.hpp │ │ │ │ ├── intrin_avx512.hpp │ │ │ │ ├── intrin_cpp.hpp │ │ │ │ ├── intrin_forward.hpp │ │ │ │ ├── intrin_lasx.hpp │ │ │ │ ├── intrin_lsx.hpp │ │ │ │ ├── intrin_msa.hpp │ │ │ │ ├── intrin_neon.hpp │ │ │ │ ├── intrin_rvv.hpp │ │ │ │ ├── intrin_rvv071.hpp │ │ │ │ ├── intrin_rvv_010_compat_non-policy.hpp │ │ │ │ ├── intrin_rvv_010_compat_overloaded-non-policy.hpp │ │ │ │ ├── intrin_rvv_011_compat.hpp │ │ │ │ ├── intrin_rvv_compat_overloaded.hpp │ │ │ │ ├── intrin_rvv_scalable.hpp │ │ │ │ ├── intrin_sse.hpp │ │ │ │ ├── intrin_sse_em.hpp │ │ │ │ ├── intrin_vsx.hpp │ │ │ │ ├── intrin_wasm.hpp │ │ │ │ ├── msa_macros.h │ │ │ │ └── simd_utils.impl.hpp │ │ │ ├── mat.hpp │ │ │ ├── mat.inl.hpp │ │ │ ├── matx.hpp │ │ │ ├── neon_utils.hpp │ │ │ ├── ocl.hpp │ │ │ ├── ocl_genbase.hpp │ │ │ ├── opencl │ │ │ │ ├── ocl_defs.hpp │ │ │ │ ├── opencl_info.hpp │ │ │ │ ├── opencl_svm.hpp │ │ │ │ └── runtime │ │ │ │ │ ├── autogenerated │ │ │ │ │ ├── opencl_clblas.hpp │ │ │ │ │ ├── opencl_clfft.hpp │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ └── opencl_gl_wrappers.hpp │ │ │ │ │ ├── opencl_clblas.hpp │ │ │ │ │ ├── opencl_clfft.hpp │ │ │ │ │ ├── opencl_core.hpp │ │ │ │ │ ├── opencl_core_wrappers.hpp │ │ │ │ │ ├── opencl_gl.hpp │ │ │ │ │ ├── opencl_gl_wrappers.hpp │ │ │ │ │ ├── opencl_svm_20.hpp │ │ │ │ │ ├── opencl_svm_definitions.hpp │ │ │ │ │ └── opencl_svm_hsa_extension.hpp │ │ │ ├── opengl.hpp │ │ │ ├── operations.hpp │ │ │ ├── optim.hpp │ │ │ ├── ovx.hpp │ │ │ ├── parallel │ │ │ │ ├── backend │ │ │ │ │ ├── parallel_for.openmp.hpp │ │ │ │ │ └── parallel_for.tbb.hpp │ │ │ │ └── parallel_backend.hpp │ │ │ ├── persistence.hpp │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl.hpp │ │ │ ├── saturate.hpp │ │ │ ├── simd_intrinsics.hpp │ │ │ ├── softfloat.hpp │ │ │ ├── sse_utils.hpp │ │ │ ├── traits.hpp │ │ │ ├── types.hpp │ │ │ ├── types_c.h │ │ │ ├── utility.hpp │ │ │ ├── utils │ │ │ │ ├── allocator_stats.hpp │ │ │ │ ├── allocator_stats.impl.hpp │ │ │ │ ├── filesystem.hpp │ │ │ │ ├── fp_control_utils.hpp │ │ │ │ ├── instrumentation.hpp │ │ │ │ ├── logger.defines.hpp │ │ │ │ ├── logger.hpp │ │ │ │ ├── logtag.hpp │ │ │ │ ├── tls.hpp │ │ │ │ └── trace.hpp │ │ │ ├── va_intel.hpp │ │ │ ├── version.hpp │ │ │ └── vsx_utils.hpp │ │ │ ├── cvconfig.h │ │ │ ├── features2d.hpp │ │ │ ├── features2d │ │ │ ├── features2d.hpp │ │ │ └── hal │ │ │ │ └── interface.h │ │ │ ├── highgui.hpp │ │ │ ├── highgui │ │ │ └── highgui.hpp │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc │ │ │ ├── bindings.hpp │ │ │ ├── detail │ │ │ │ └── gcgraph.hpp │ │ │ ├── hal │ │ │ │ ├── hal.hpp │ │ │ │ └── interface.h │ │ │ ├── imgproc.hpp │ │ │ ├── imgproc_c.h │ │ │ ├── segmentation.hpp │ │ │ └── types_c.h │ │ │ ├── opencv.hpp │ │ │ ├── opencv_modules.hpp │ │ │ ├── photo.hpp │ │ │ ├── photo │ │ │ ├── cuda.hpp │ │ │ ├── legacy │ │ │ │ └── constants_c.h │ │ │ └── photo.hpp │ │ │ ├── video.hpp │ │ │ └── video │ │ │ ├── background_segm.hpp │ │ │ ├── detail │ │ │ └── tracking.detail.hpp │ │ │ ├── legacy │ │ │ └── constants_c.h │ │ │ ├── tracking.hpp │ │ │ └── video.hpp │ ├── rga │ │ ├── GrallocOps.h │ │ ├── RgaApi.h │ │ ├── RgaMutex.h │ │ ├── RgaSingleton.h │ │ ├── RgaUtils.h │ │ ├── RockchipRga.h │ │ ├── drmrga.h │ │ ├── im2d.h │ │ ├── im2d.hpp │ │ ├── im2d_buffer.h │ │ ├── im2d_common.h │ │ ├── im2d_expand.h │ │ ├── im2d_mpi.h │ │ ├── im2d_single.h │ │ ├── im2d_task.h │ │ ├── im2d_type.h │ │ ├── im2d_version.h │ │ └── rga.h │ ├── rkAVS_stitchFor1106.h │ ├── rk_adc.h │ ├── rk_comm_adec.h │ ├── rk_comm_aenc.h │ ├── rk_comm_af.h │ ├── rk_comm_aio.h │ ├── rk_comm_avs.h │ ├── rk_comm_ivs.h │ ├── rk_comm_mb.h │ ├── rk_comm_rc.h │ ├── rk_comm_rgn.h │ ├── rk_comm_sys.h │ ├── rk_comm_tde.h │ ├── rk_comm_vdec.h │ ├── rk_comm_venc.h │ ├── rk_comm_vgs.h │ ├── rk_comm_vi.h │ ├── rk_comm_video.h │ ├── rk_comm_vo.h │ ├── rk_comm_vpss.h │ ├── rk_common.h │ ├── rk_debug.h │ ├── rk_defines.h │ ├── rk_errno.h │ ├── rk_mpi_adec.h │ ├── rk_mpi_aenc.h │ ├── rk_mpi_af.h │ ├── rk_mpi_ai.h │ ├── rk_mpi_amix.h │ ├── rk_mpi_ao.h │ ├── rk_mpi_avs.h │ ├── rk_mpi_cal.h │ ├── rk_mpi_ivs.h │ ├── rk_mpi_mb.h │ ├── rk_mpi_mmz.h │ ├── rk_mpi_rgn.h │ ├── rk_mpi_sys.h │ ├── rk_mpi_tde.h │ ├── rk_mpi_vdec.h │ ├── rk_mpi_venc.h │ ├── rk_mpi_vgs.h │ ├── rk_mpi_vi.h │ ├── rk_mpi_vo.h │ ├── rk_mpi_vpss.h │ ├── rk_pwm.h │ ├── rk_sysfs.h │ ├── rk_system.h │ ├── rk_time.h │ ├── rk_type.h │ ├── rk_watchdog.h │ ├── rkaiq │ │ ├── algos │ │ │ ├── a3dlut │ │ │ │ ├── rk_aiq_types_a3dlut_algo.h │ │ │ │ ├── rk_aiq_types_a3dlut_algo_int.h │ │ │ │ ├── rk_aiq_types_a3dlut_hw.h │ │ │ │ └── rk_aiq_uapi_a3dlut_int.h │ │ │ ├── abayer2dnr2 │ │ │ │ ├── rk_aiq_types_abayer2dnr_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_abayer2dnr_algo_v2.h │ │ │ │ ├── rk_aiq_types_abayer2dnr_hw_v2.h │ │ │ │ ├── rk_aiq_uapi_abayer2dnr_int_v2.h │ │ │ │ └── rk_aiq_uapi_camgroup_abayer2dnr_int_v2.h │ │ │ ├── abayer2dnrV23 │ │ │ │ ├── rk_aiq_types_abayer2dnr_algo_int_v23.h │ │ │ │ ├── rk_aiq_types_abayer2dnr_algo_v23.h │ │ │ │ ├── rk_aiq_types_abayer2dnr_hw_v23.h │ │ │ │ ├── rk_aiq_uapi_abayer2dnr_int_v23.h │ │ │ │ └── rk_aiq_uapi_camgroup_abayer2dnr_int_v23.h │ │ │ ├── abayertnr2 │ │ │ │ ├── rk_aiq_types_abayertnr_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_abayertnr_algo_v2.h │ │ │ │ ├── rk_aiq_types_abayertnr_hw_v2.h │ │ │ │ ├── rk_aiq_uapi_abayertnr_int_v2.h │ │ │ │ └── rk_aiq_uapi_camgroup_abayertnr_int_v2.h │ │ │ ├── abayertnrV23 │ │ │ │ ├── rk_aiq_types_abayertnr_algo_int_v23.h │ │ │ │ ├── rk_aiq_types_abayertnr_algo_v23.h │ │ │ │ ├── rk_aiq_types_abayertnr_hw_v23.h │ │ │ │ ├── rk_aiq_uapi_abayertnr_int_v23.h │ │ │ │ └── rk_aiq_uapi_camgroup_abayertnr_int_v23.h │ │ │ ├── ablc │ │ │ │ ├── rk_aiq_types_ablc_algo.h │ │ │ │ ├── rk_aiq_types_ablc_algo_int.h │ │ │ │ ├── rk_aiq_types_ablc_hw.h │ │ │ │ └── rk_aiq_uapi_ablc_int.h │ │ │ ├── ablcV32 │ │ │ │ ├── rk_aiq_types_ablc_algo_int_v32.h │ │ │ │ ├── rk_aiq_types_ablc_algo_v32.h │ │ │ │ ├── rk_aiq_types_ablc_hw_v32.h │ │ │ │ └── rk_aiq_uapi_ablc_int_v32.h │ │ │ ├── acac │ │ │ │ ├── rk_aiq_types_acac_algo.h │ │ │ │ ├── rk_aiq_types_acac_algo_int.h │ │ │ │ ├── rk_aiq_types_acac_hw.h │ │ │ │ └── rk_aiq_uapi_acac_int.h │ │ │ ├── accm │ │ │ │ ├── rk_aiq_types_accm_algo.h │ │ │ │ ├── rk_aiq_types_accm_algo_int.h │ │ │ │ ├── rk_aiq_types_accm_hw.h │ │ │ │ └── rk_aiq_uapi_accm_int.h │ │ │ ├── acgc │ │ │ │ ├── rk_aiq_types_acgc_algo.h │ │ │ │ └── rk_aiq_uapi_acgc_int.h │ │ │ ├── acnr │ │ │ │ ├── rk_aiq_types_acnr_algo_int_v1.h │ │ │ │ ├── rk_aiq_types_acnr_algo_v1.h │ │ │ │ ├── rk_aiq_types_acnr_hw_v1.h │ │ │ │ └── rk_aiq_uapi_acnr_int_v1.h │ │ │ ├── acnr2 │ │ │ │ ├── rk_aiq_types_acnr_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_acnr_algo_v2.h │ │ │ │ ├── rk_aiq_types_acnr_hw_v2.h │ │ │ │ ├── rk_aiq_uapi_acnr_int_v2.h │ │ │ │ └── rk_aiq_uapi_camgroup_acnr_int_v2.h │ │ │ ├── acnrV30 │ │ │ │ ├── rk_aiq_types_acnr_algo_int_v30.h │ │ │ │ ├── rk_aiq_types_acnr_algo_v30.h │ │ │ │ ├── rk_aiq_types_acnr_hw_v30.h │ │ │ │ ├── rk_aiq_uapi_acnr_int_v30.h │ │ │ │ └── rk_aiq_uapi_camgroup_acnr_int_v30.h │ │ │ ├── acp │ │ │ │ ├── rk_aiq_types_acp_algo.h │ │ │ │ ├── rk_aiq_types_acp_algo_int.h │ │ │ │ └── rk_aiq_uapi_acp_int.h │ │ │ ├── acsm │ │ │ │ ├── rk_aiq_types_acsm_algo.h │ │ │ │ └── rk_aiq_uapi_acsm_int.h │ │ │ ├── adebayer │ │ │ │ ├── rk_aiq_types_adebayer_algo.h │ │ │ │ ├── rk_aiq_types_adebayer_algo_int.h │ │ │ │ ├── rk_aiq_types_adebayer_hw.h │ │ │ │ └── rk_aiq_uapi_adebayer_int.h │ │ │ ├── adegamma │ │ │ │ ├── rk_aiq_types_adegamma_algo.h │ │ │ │ ├── rk_aiq_types_adegamma_algo_int.h │ │ │ │ └── rk_aiq_uapi_adegamma_int.h │ │ │ ├── adehaze │ │ │ │ ├── rk_aiq_types_adehaze_algo.h │ │ │ │ ├── rk_aiq_types_adehaze_algo_int.h │ │ │ │ ├── rk_aiq_types_adehaze_hw.h │ │ │ │ ├── rk_aiq_types_adehaze_stat.h │ │ │ │ └── rk_aiq_uapi_adehaze_int.h │ │ │ ├── adpcc │ │ │ │ ├── rk_aiq_types_adpcc_algo.h │ │ │ │ ├── rk_aiq_types_adpcc_algo_int.h │ │ │ │ ├── rk_aiq_types_adpcc_hw.h │ │ │ │ └── rk_aiq_uapi_adpcc_int.h │ │ │ ├── adrc │ │ │ │ ├── rk_aiq_types_adrc_algo.h │ │ │ │ ├── rk_aiq_types_adrc_algo_int.h │ │ │ │ ├── rk_aiq_types_adrc_hw.h │ │ │ │ └── rk_aiq_uapi_adrc_int.h │ │ │ ├── ae │ │ │ │ ├── rk_aiq_types_ae_algo.h │ │ │ │ ├── rk_aiq_types_ae_algo_int.h │ │ │ │ ├── rk_aiq_types_ae_hw.h │ │ │ │ ├── rk_aiq_uapi_ae_int.h │ │ │ │ ├── rk_aiq_uapi_ae_int_types_v1.h │ │ │ │ └── rk_aiq_uapi_ae_int_types_v2.h │ │ │ ├── aeis │ │ │ │ ├── rk_aiq_types_aeis_algo.h │ │ │ │ ├── rk_aiq_types_aeis_algo_int.h │ │ │ │ ├── rk_aiq_types_aeis_hw.h │ │ │ │ └── rk_aiq_uapi_aeis_int.h │ │ │ ├── af │ │ │ │ ├── rk_aiq_af_hw_v200.h │ │ │ │ ├── rk_aiq_types_af_algo.h │ │ │ │ ├── rk_aiq_types_af_algo_int.h │ │ │ │ └── rk_aiq_uapi_af_int.h │ │ │ ├── afec │ │ │ │ ├── fec_algo.h │ │ │ │ ├── rk_aiq_types_afec_algo.h │ │ │ │ ├── rk_aiq_types_afec_algo_int.h │ │ │ │ └── rk_aiq_uapi_afec_int.h │ │ │ ├── again │ │ │ │ ├── rk_aiq_types_again_algo.h │ │ │ │ ├── rk_aiq_types_again_algo_int.h │ │ │ │ ├── rk_aiq_types_again_hw.h │ │ │ │ └── rk_aiq_uapi_again_int.h │ │ │ ├── again2 │ │ │ │ ├── rk_aiq_types_again_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_again_algo_v2.h │ │ │ │ ├── rk_aiq_types_again_hw_v2.h │ │ │ │ ├── rk_aiq_uapi_again_int_v2.h │ │ │ │ └── rk_aiq_uapi_camgroup_again_int_v2.h │ │ │ ├── agamma │ │ │ │ ├── rk_aiq_types_agamma_algo.h │ │ │ │ ├── rk_aiq_types_agamma_algo_int.h │ │ │ │ ├── rk_aiq_types_agamma_hw.h │ │ │ │ └── rk_aiq_uapi_agamma_int.h │ │ │ ├── agic │ │ │ │ ├── rk_aiq_types_algo_agic.h │ │ │ │ ├── rk_aiq_types_algo_agic_int.h │ │ │ │ └── rk_aiq_uapi_agic_int.h │ │ │ ├── aie │ │ │ │ ├── rk_aiq_types_aie_algo.h │ │ │ │ ├── rk_aiq_types_aie_algo_int.h │ │ │ │ └── rk_aiq_uapi_aie_int.h │ │ │ ├── aldch │ │ │ │ ├── rk_aiq_types_aldch_algo.h │ │ │ │ ├── rk_aiq_types_aldch_algo_int.h │ │ │ │ ├── rk_aiq_uapi_aldch_int.h │ │ │ │ └── rk_aiq_uapi_aldch_v21_int.h │ │ │ ├── alsc │ │ │ │ ├── rk_aiq_types_alsc_algo.h │ │ │ │ ├── rk_aiq_types_alsc_algo_int.h │ │ │ │ ├── rk_aiq_types_alsc_hw.h │ │ │ │ └── rk_aiq_uapi_alsc_int.h │ │ │ ├── amd │ │ │ │ ├── rk_aiq_types_algo_amd_int.h │ │ │ │ └── rk_aiq_types_amd_algo.h │ │ │ ├── amerge │ │ │ │ ├── rk_aiq_types_amerge_algo.h │ │ │ │ ├── rk_aiq_types_amerge_algo_int.h │ │ │ │ ├── rk_aiq_types_amerge_hw.h │ │ │ │ └── rk_aiq_uapi_amerge_int.h │ │ │ ├── amfnr │ │ │ │ ├── rk_aiq_types_amfnr_algo_int_v1.h │ │ │ │ ├── rk_aiq_types_amfnr_algo_v1.h │ │ │ │ ├── rk_aiq_types_amfnr_hw_v1.h │ │ │ │ └── rk_aiq_uapi_amfnr_int_v1.h │ │ │ ├── anr │ │ │ │ ├── rk_aiq_types_anr_algo.h │ │ │ │ ├── rk_aiq_types_anr_algo_int.h │ │ │ │ ├── rk_aiq_types_anr_hw.h │ │ │ │ ├── rk_aiq_uapi_anr_int.h │ │ │ │ └── tnr_md │ │ │ │ │ └── motion_detect.h │ │ │ ├── aorb │ │ │ │ ├── rk_aiq_orb_hw.h │ │ │ │ └── rk_aiq_types_orb_algo.h │ │ │ ├── arawnr │ │ │ │ ├── rk_aiq_types_abayernr_algo_int_v1.h │ │ │ │ ├── rk_aiq_types_abayernr_algo_v1.h │ │ │ │ ├── rk_aiq_types_abayernr_hw_v1.h │ │ │ │ └── rk_aiq_uapi_abayernr_int_v1.h │ │ │ ├── arawnr2 │ │ │ │ ├── rk_aiq_types_abayernr_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_abayernr_algo_v2.h │ │ │ │ ├── rk_aiq_types_abayernr_hw_v2.h │ │ │ │ └── rk_aiq_uapi_abayernr_int_v2.h │ │ │ ├── asd │ │ │ │ ├── rk_aiq_types_asd_algo.h │ │ │ │ └── rk_aiq_uapi_asd_int.h │ │ │ ├── asharp │ │ │ │ ├── rk_aiq_types_asharp_algo.h │ │ │ │ ├── rk_aiq_types_asharp_algo_int.h │ │ │ │ ├── rk_aiq_types_asharp_hw.h │ │ │ │ └── rk_aiq_uapi_asharp_int.h │ │ │ ├── asharp3 │ │ │ │ ├── rk_aiq_types_asharp_algo_int_v3.h │ │ │ │ ├── rk_aiq_types_asharp_algo_v3.h │ │ │ │ ├── rk_aiq_types_asharp_hw_v3.h │ │ │ │ └── rk_aiq_uapi_asharp_int_v3.h │ │ │ ├── asharp4 │ │ │ │ ├── rk_aiq_types_asharp_algo_int_v4.h │ │ │ │ ├── rk_aiq_types_asharp_algo_v4.h │ │ │ │ ├── rk_aiq_types_asharp_hw_v4.h │ │ │ │ ├── rk_aiq_uapi_asharp_int_v4.h │ │ │ │ └── rk_aiq_uapi_camgroup_asharp_int_v4.h │ │ │ ├── asharpV33 │ │ │ │ ├── rk_aiq_types_asharp_algo_int_v33.h │ │ │ │ ├── rk_aiq_types_asharp_algo_v33.h │ │ │ │ ├── rk_aiq_types_asharp_hw_v33.h │ │ │ │ ├── rk_aiq_uapi_asharp_int_v33.h │ │ │ │ └── rk_aiq_uapi_camgroup_asharp_int_v33.h │ │ │ ├── atmo │ │ │ │ ├── rk_aiq_types_atmo_algo.h │ │ │ │ ├── rk_aiq_types_atmo_algo_int.h │ │ │ │ ├── rk_aiq_types_atmo_stat_v200.h │ │ │ │ └── rk_aiq_uapi_atmo_int.h │ │ │ ├── auvnr │ │ │ │ ├── rk_aiq_types_auvnr_algo_int_v1.h │ │ │ │ ├── rk_aiq_types_auvnr_algo_v1.h │ │ │ │ ├── rk_aiq_types_auvnr_hw_v1.h │ │ │ │ └── rk_aiq_uapi_auvnr_int_v1.h │ │ │ ├── awb │ │ │ │ ├── rk_aiq_types_awb_algo.h │ │ │ │ ├── rk_aiq_types_awb_algo_int.h │ │ │ │ ├── rk_aiq_types_awb_stat_v200.h │ │ │ │ ├── rk_aiq_types_awb_stat_v201.h │ │ │ │ ├── rk_aiq_types_awb_stat_v2xx.h │ │ │ │ ├── rk_aiq_types_awb_stat_v32.h │ │ │ │ ├── rk_aiq_uapi_awb_int.h │ │ │ │ ├── rk_aiq_uapiv2_awb_int.h │ │ │ │ └── rk_aiq_uapiv2_camgroup_awb_int.h │ │ │ ├── aynr │ │ │ │ ├── rk_aiq_types_aynr_algo_int_v1.h │ │ │ │ ├── rk_aiq_types_aynr_algo_v1.h │ │ │ │ ├── rk_aiq_types_aynr_hw_v1.h │ │ │ │ └── rk_aiq_uapi_aynr_int_v1.h │ │ │ ├── aynr2 │ │ │ │ ├── rk_aiq_types_aynr_algo_int_v2.h │ │ │ │ ├── rk_aiq_types_aynr_algo_v2.h │ │ │ │ ├── rk_aiq_types_aynr_hw_v2.h │ │ │ │ └── rk_aiq_uapi_aynr_int_v2.h │ │ │ ├── aynr3 │ │ │ │ ├── rk_aiq_types_aynr_algo_int_v3.h │ │ │ │ ├── rk_aiq_types_aynr_algo_v3.h │ │ │ │ ├── rk_aiq_types_aynr_hw_v3.h │ │ │ │ ├── rk_aiq_uapi_aynr_int_v3.h │ │ │ │ └── rk_aiq_uapi_camgroup_aynr_int_v3.h │ │ │ ├── aynrV22 │ │ │ │ ├── rk_aiq_types_aynr_algo_int_v22.h │ │ │ │ ├── rk_aiq_types_aynr_algo_v22.h │ │ │ │ ├── rk_aiq_types_aynr_hw_v22.h │ │ │ │ ├── rk_aiq_uapi_aynr_int_v22.h │ │ │ │ └── rk_aiq_uapi_camgroup_aynr_int_v22.h │ │ │ ├── rk_aiq_algo_des.h │ │ │ └── rk_aiq_algo_types.h │ │ ├── common │ │ │ ├── list.h │ │ │ ├── mediactl │ │ │ │ └── mediactl.h │ │ │ ├── panorama_stitchingApp.h │ │ │ ├── rk-camera-module.h │ │ │ ├── rk_aiq.h │ │ │ ├── rk_aiq_comm.h │ │ │ ├── rk_aiq_mems_sensor.h │ │ │ ├── rk_aiq_offline_raw.h │ │ │ ├── rk_aiq_types.h │ │ │ ├── rk_aiq_types_v32.h │ │ │ ├── rk_aiq_types_v3x.h │ │ │ ├── rk_isp20_hw.h │ │ │ ├── rkaiq_ini.h │ │ │ ├── rkisp2-config.h │ │ │ ├── rkisp21-config.h │ │ │ ├── rkisp3-config.h │ │ │ └── rkisp32-config.h │ │ ├── config.h │ │ ├── ipc_server │ │ │ ├── rkaiq_tool_ae.h │ │ │ ├── rkaiq_tool_anr.h │ │ │ ├── rkaiq_tool_imgproc.h │ │ │ ├── rkaiq_tool_sharp.h │ │ │ ├── rkaiq_tool_sysctl.h │ │ │ └── socket_server.h │ │ ├── iq_parser │ │ │ ├── RkAiqCalibApi.h │ │ │ ├── RkAiqCalibDbTypes.h │ │ │ ├── RkAiqCalibDbTypesIsp20.h │ │ │ └── RkAiqCalibDbTypesIsp21.h │ │ ├── iq_parser_v2 │ │ │ ├── RkAiqCalibDbTypesV2.h │ │ │ ├── RkAiqCalibDbV2.h │ │ │ ├── RkAiqCalibDbV2Helper.h │ │ │ ├── RkAiqCalibDbV2TypesIsp20.h │ │ │ ├── RkAiqCalibDbV2TypesIsp21.h │ │ │ ├── RkAiqCalibDbV2TypesIsp32.h │ │ │ ├── RkAiqCalibDbV2TypesIsp3x.h │ │ │ ├── RkAiqUapitypes.h │ │ │ ├── ablc_head.h │ │ │ ├── ablc_head_V32.h │ │ │ ├── ablc_uapi_head_v32.h │ │ │ ├── adegamma_head.h │ │ │ ├── adehaze_head.h │ │ │ ├── adehaze_uapi_head.h │ │ │ ├── adpcc_head.h │ │ │ ├── adrc_head.h │ │ │ ├── adrc_uapi_head.h │ │ │ ├── aec_head.h │ │ │ ├── aec_uapi_head.h │ │ │ ├── af_head.h │ │ │ ├── agamma_head.h │ │ │ ├── agamma_uapi_head.h │ │ │ ├── agic_head.h │ │ │ ├── aie_head.h │ │ │ ├── alsc_head.h │ │ │ ├── amerge_head.h │ │ │ ├── amerge_uapi_head.h │ │ │ ├── atmo_head.h │ │ │ ├── atmo_uapi_head.h │ │ │ ├── awb_head.h │ │ │ ├── awb_uapi_head.h │ │ │ ├── bayer2dnr_head_v2.h │ │ │ ├── bayer2dnr_head_v23.h │ │ │ ├── bayer2dnr_uapi_head_v23.h │ │ │ ├── bayernr_head_v1.h │ │ │ ├── bayernr_head_v2.h │ │ │ ├── bayertnr_head_v2.h │ │ │ ├── bayertnr_head_v23.h │ │ │ ├── bayertnr_uapi_head_v23.h │ │ │ ├── cac_head.h │ │ │ ├── ccm_head.h │ │ │ ├── ccm_uapi_head.h │ │ │ ├── cgc_head.h │ │ │ ├── cnr_head_v1.h │ │ │ ├── cnr_head_v2.h │ │ │ ├── cnr_head_v30.h │ │ │ ├── cnr_uapi_head_v30.h │ │ │ ├── cproc_head.h │ │ │ ├── cpsl_head.h │ │ │ ├── csm_head.h │ │ │ ├── debayer_head.h │ │ │ ├── edgefilter_head_v1.h │ │ │ ├── eis_head.h │ │ │ ├── fec_head.h │ │ │ ├── gain_head_v2.h │ │ │ ├── gain_uapi_head_v2.h │ │ │ ├── j2s │ │ │ │ ├── cJSON.h │ │ │ │ ├── cJSON_Utils.h │ │ │ │ ├── common.h │ │ │ │ └── j2s.h │ │ │ ├── ldch_head.h │ │ │ ├── lut3d_head.h │ │ │ ├── mfnr_head_v1.h │ │ │ ├── moduleinfo_head.h │ │ │ ├── orb_head.h │ │ │ ├── sensorinfo_head.h │ │ │ ├── sharp_head_v1.h │ │ │ ├── sharp_head_v3.h │ │ │ ├── sharp_head_v33.h │ │ │ ├── sharp_head_v4.h │ │ │ ├── sharp_uapi_head_v33.h │ │ │ ├── sys_static_cfg_head.h │ │ │ ├── thumbnails_head.h │ │ │ ├── uvnr_head_v1.h │ │ │ ├── ynr_head_v1.h │ │ │ ├── ynr_head_v2.h │ │ │ ├── ynr_head_v22.h │ │ │ ├── ynr_head_v3.h │ │ │ └── ynr_uapi_head_v22.h │ │ ├── smartIr │ │ │ └── rk_smart_ir_api.h │ │ ├── uAPI2 │ │ │ ├── rk_aiq_user_api2_a3dlut.h │ │ │ ├── rk_aiq_user_api2_abayer2dnr_v2.h │ │ │ ├── rk_aiq_user_api2_abayer2dnr_v23.h │ │ │ ├── rk_aiq_user_api2_abayernr_v2.h │ │ │ ├── rk_aiq_user_api2_abayertnr_v2.h │ │ │ ├── rk_aiq_user_api2_abayertnr_v23.h │ │ │ ├── rk_aiq_user_api2_ablc.h │ │ │ ├── rk_aiq_user_api2_ablc_v32.h │ │ │ ├── rk_aiq_user_api2_acac.h │ │ │ ├── rk_aiq_user_api2_accm.h │ │ │ ├── rk_aiq_user_api2_acgc.h │ │ │ ├── rk_aiq_user_api2_acnr_v1.h │ │ │ ├── rk_aiq_user_api2_acnr_v2.h │ │ │ ├── rk_aiq_user_api2_acnr_v30.h │ │ │ ├── rk_aiq_user_api2_acp.h │ │ │ ├── rk_aiq_user_api2_acsm.h │ │ │ ├── rk_aiq_user_api2_adebayer.h │ │ │ ├── rk_aiq_user_api2_adegamma.h │ │ │ ├── rk_aiq_user_api2_adehaze.h │ │ │ ├── rk_aiq_user_api2_adpcc.h │ │ │ ├── rk_aiq_user_api2_adrc.h │ │ │ ├── rk_aiq_user_api2_ae.h │ │ │ ├── rk_aiq_user_api2_af.h │ │ │ ├── rk_aiq_user_api2_afec.h │ │ │ ├── rk_aiq_user_api2_again_v2.h │ │ │ ├── rk_aiq_user_api2_agamma.h │ │ │ ├── rk_aiq_user_api2_agic.h │ │ │ ├── rk_aiq_user_api2_aie.h │ │ │ ├── rk_aiq_user_api2_aldch.h │ │ │ ├── rk_aiq_user_api2_aldch_v21.h │ │ │ ├── rk_aiq_user_api2_alsc.h │ │ │ ├── rk_aiq_user_api2_amerge.h │ │ │ ├── rk_aiq_user_api2_anr.h │ │ │ ├── rk_aiq_user_api2_asharp_v3.h │ │ │ ├── rk_aiq_user_api2_asharp_v33.h │ │ │ ├── rk_aiq_user_api2_asharp_v4.h │ │ │ ├── rk_aiq_user_api2_atmo.h │ │ │ ├── rk_aiq_user_api2_awb.h │ │ │ ├── rk_aiq_user_api2_aynr_v2.h │ │ │ ├── rk_aiq_user_api2_aynr_v22.h │ │ │ ├── rk_aiq_user_api2_aynr_v3.h │ │ │ ├── rk_aiq_user_api2_camgroup.h │ │ │ ├── rk_aiq_user_api2_custom_ae.h │ │ │ ├── rk_aiq_user_api2_custom_awb.h │ │ │ ├── rk_aiq_user_api2_custom_awb_type_v32.h │ │ │ ├── rk_aiq_user_api2_custom_awb_type_v3x.h │ │ │ ├── rk_aiq_user_api2_debug.h │ │ │ ├── rk_aiq_user_api2_helper.h │ │ │ ├── rk_aiq_user_api2_imgproc.h │ │ │ ├── rk_aiq_user_api2_sysctl.h │ │ │ ├── rk_aiq_user_api2_wrapper.h │ │ │ └── rk_aiq_user_api_common.h │ │ └── xcore │ │ │ └── base │ │ │ ├── xcam_buffer.h │ │ │ ├── xcam_common.h │ │ │ └── xcam_defs.h │ ├── rkaudio_preprocess.h │ ├── rkaudio_sed.h │ ├── rkbar_scan_api.h │ ├── rkdemuxer.h │ ├── rkmuxer.h │ ├── rockchip │ │ ├── mpp_buffer.h │ │ ├── mpp_err.h │ │ ├── mpp_frame.h │ │ ├── mpp_meta.h │ │ ├── mpp_packet.h │ │ ├── mpp_rc_api.h │ │ ├── mpp_rc_defs.h │ │ ├── mpp_task.h │ │ ├── rk_mpi.h │ │ ├── rk_mpi_cmd.h │ │ ├── rk_mpi_mb_cmd.h │ │ ├── rk_type.h │ │ ├── rk_vdec_cfg.h │ │ ├── rk_vdec_cmd.h │ │ ├── rk_venc_cfg.h │ │ ├── rk_venc_cmd.h │ │ ├── rk_venc_rc.h │ │ ├── rk_venc_ref.h │ │ ├── vpu.h │ │ └── vpu_api.h │ ├── rockiva │ │ ├── rockiva_ba_api.h │ │ ├── rockiva_common.h │ │ ├── rockiva_det_api.h │ │ ├── rockiva_face_api.h │ │ └── rockiva_image.h │ ├── rockive │ │ ├── ivs_md.h │ │ ├── rk_comm_ive.h │ │ ├── rk_ive.h │ │ ├── rk_md.h │ │ └── rk_mpi_ive.h │ ├── rtsp_demo.h │ ├── skv.h │ ├── xf86drm.h │ └── xf86drmMode.h └── lib │ ├── README.md │ ├── cmake │ └── opencv4 │ │ ├── OpenCVConfig-version.cmake │ │ ├── OpenCVConfig.cmake │ │ ├── OpenCVModules-release.cmake │ │ └── OpenCVModules.cmake │ ├── face_mask_classify.data │ ├── face_quality_v2.data │ ├── libdrm.so.2 │ ├── libdrm.so.2.4.0 │ ├── libdrm_rockchip.so.1 │ ├── libdrm_rockchip.so.1.0.0 │ ├── libiconv.so.2 │ ├── libiconv.so.2.6.1 │ ├── libkms.so.1 │ ├── libkms.so.1.0.0 │ ├── librockchip_mpp.so.0 │ ├── librockchip_mpp.so.1 │ ├── libz.so.1 │ ├── object_detection_ipc_cls7.data │ ├── object_detection_ipc_cls7_v.data │ ├── object_detection_pfp.data │ ├── object_detection_pfp_896x512.data │ └── pkgconfig │ ├── libdrm.pc │ ├── libdrm_rockchip.pc │ └── libkms.pc ├── utility └── timecost.h ├── v4l2 ├── CMakeLists.txt ├── captureJpgApp.cpp └── tools │ ├── v4l2CapPicTool.cpp │ └── v4l2CapPicTool.h └── yolov5 ├── CMakeLists.txt ├── main.cc ├── model ├── bus.jpg ├── coco_80_labels_list.txt └── yolov5s_relu.rknn ├── postprocess.cc ├── postprocess.h ├── rknpu2 └── yolov5_rv1106_1103.cc ├── utils ├── CMakeLists.txt ├── common.h ├── file_utils.c ├── file_utils.h ├── font.h ├── image_drawing.c ├── image_drawing.h ├── image_utils.c └── image_utils.h └── yolov5.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /MNIST/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/CMakeLists.txt -------------------------------------------------------------------------------- /MNIST/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/Makefile -------------------------------------------------------------------------------- /MNIST/common/fillimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/fillimage.c -------------------------------------------------------------------------------- /MNIST/common/isp2.x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/isp2.x/Makefile -------------------------------------------------------------------------------- /MNIST/common/isp2.x/sample_comm_isp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/isp2.x/sample_comm_isp.c -------------------------------------------------------------------------------- /MNIST/common/isp2.x/sample_comm_isp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/isp2.x/sample_comm_isp.h -------------------------------------------------------------------------------- /MNIST/common/isp3.x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/isp3.x/Makefile -------------------------------------------------------------------------------- /MNIST/common/isp3.x/sample_comm_isp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/isp3.x/sample_comm_isp.c -------------------------------------------------------------------------------- /MNIST/common/isp3.x/sample_comm_isp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/isp3.x/sample_comm_isp.h -------------------------------------------------------------------------------- /MNIST/common/loadbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/loadbmp.c -------------------------------------------------------------------------------- /MNIST/common/loadbmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/loadbmp.h -------------------------------------------------------------------------------- /MNIST/common/rtsp_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/rtsp_demo.h -------------------------------------------------------------------------------- /MNIST/common/sample_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm.h -------------------------------------------------------------------------------- /MNIST/common/sample_comm_aenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_aenc.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_ai.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_ao.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_ao.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_avs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_avs.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_iva.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_iva.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_ivs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_ivs.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_rgn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_rgn.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_tde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_tde.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_venc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_venc.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_vi.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_vo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_vo.c -------------------------------------------------------------------------------- /MNIST/common/sample_comm_vpss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/common/sample_comm_vpss.c -------------------------------------------------------------------------------- /MNIST/include/aenc_mp3_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/aenc_mp3_register.h -------------------------------------------------------------------------------- /MNIST/include/audio_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/audio_server.h -------------------------------------------------------------------------------- /MNIST/include/iio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/iio.h -------------------------------------------------------------------------------- /MNIST/include/libRkScalerApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libRkScalerApi.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/amdgpu_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/amdgpu_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/drm_fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/drm_fourcc.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/drm_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/drm_mode.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/drm_sarea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/drm_sarea.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/i915_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/i915_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/mach64_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/mach64_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/mga_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/mga_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/nouveau_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/nouveau_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/qxl_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/qxl_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/r128_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/r128_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/radeon_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/radeon_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/rockchip_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/rockchip_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/rockchip_drmif.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/rockchip_drmif.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/savage_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/savage_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/sis_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/sis_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/tegra_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/tegra_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/vc4_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/vc4_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/via_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/via_drm.h -------------------------------------------------------------------------------- /MNIST/include/libdrm/virtgpu_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libdrm/virtgpu_drm.h -------------------------------------------------------------------------------- /MNIST/include/libkms/libkms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libkms/libkms.h -------------------------------------------------------------------------------- /MNIST/include/libsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/libsync.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_adc.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_event.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_gpio.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_i2c.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_led.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_mpi.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_pwm.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_spi.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_sysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_sysfs.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_system.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_time.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_uart.h -------------------------------------------------------------------------------- /MNIST/include/luckfox_watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/luckfox_watchdog.h -------------------------------------------------------------------------------- /MNIST/include/mp3_enc_table1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/mp3_enc_table1.h -------------------------------------------------------------------------------- /MNIST/include/mp3_enc_table2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/mp3_enc_table2.h -------------------------------------------------------------------------------- /MNIST/include/mp3_enc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/mp3_enc_types.h -------------------------------------------------------------------------------- /MNIST/include/mp3dec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/mp3dec.h -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/async.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/base.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/check.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/core.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/core_c.h -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda/block.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda/color.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda/common.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda/filters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda/filters.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda/limits.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda/reduce.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda/reduce.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda/scan.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda/utility.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda/warp.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cv_cpu_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cv_cpu_helper.h -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/fast_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/fast_math.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/hal/hal.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/hal/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/hal/interface.h -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/hal/intrin.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/hal/msa_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/hal/msa_macros.h -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/neon_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/neon_utils.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/ocl_genbase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/ocl_genbase.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/persistence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/persistence.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/quaternion.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/saturate.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/softfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/softfloat.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/types.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/types_c.h -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/utils/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/utils/logger.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/utils/logtag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/utils/logtag.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/utils/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/utils/tls.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/utils/trace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/utils/trace.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/va_intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/va_intel.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/version.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/core/vsx_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/core/vsx_utils.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/cvconfig.h -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/features2d.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/highgui.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/imgproc/bindings.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/imgproc/bindings.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/imgproc/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/imgproc/hal/hal.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/opencv.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/photo.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/photo/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/photo/cuda.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/photo/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/photo/photo.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/video.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /MNIST/include/opencv4/opencv2/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/opencv4/opencv2/video/video.hpp -------------------------------------------------------------------------------- /MNIST/include/rga/GrallocOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/GrallocOps.h -------------------------------------------------------------------------------- /MNIST/include/rga/RgaApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/RgaApi.h -------------------------------------------------------------------------------- /MNIST/include/rga/RgaMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/RgaMutex.h -------------------------------------------------------------------------------- /MNIST/include/rga/RgaSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/RgaSingleton.h -------------------------------------------------------------------------------- /MNIST/include/rga/RgaUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/RgaUtils.h -------------------------------------------------------------------------------- /MNIST/include/rga/RockchipRga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/RockchipRga.h -------------------------------------------------------------------------------- /MNIST/include/rga/drmrga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/drmrga.h -------------------------------------------------------------------------------- /MNIST/include/rga/im2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/im2d.h -------------------------------------------------------------------------------- /MNIST/include/rga/im2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/im2d.hpp -------------------------------------------------------------------------------- /MNIST/include/rga/im2d_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/im2d_buffer.h -------------------------------------------------------------------------------- /MNIST/include/rga/im2d_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/im2d_common.h -------------------------------------------------------------------------------- /MNIST/include/rga/im2d_expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/im2d_expand.h -------------------------------------------------------------------------------- /MNIST/include/rga/im2d_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/im2d_mpi.h -------------------------------------------------------------------------------- /MNIST/include/rga/im2d_single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/im2d_single.h -------------------------------------------------------------------------------- /MNIST/include/rga/im2d_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/im2d_task.h -------------------------------------------------------------------------------- /MNIST/include/rga/im2d_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/im2d_type.h -------------------------------------------------------------------------------- /MNIST/include/rga/im2d_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/im2d_version.h -------------------------------------------------------------------------------- /MNIST/include/rga/rga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rga/rga.h -------------------------------------------------------------------------------- /MNIST/include/rkAVS_stitchFor1106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkAVS_stitchFor1106.h -------------------------------------------------------------------------------- /MNIST/include/rk_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_adc.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_adec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_adec.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_aenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_aenc.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_af.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_af.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_aio.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_avs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_avs.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_ivs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_ivs.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_mb.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_rc.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_rgn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_rgn.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_sys.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_tde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_tde.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_vdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_vdec.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_venc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_venc.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_vgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_vgs.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_vi.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_video.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_vo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_vo.h -------------------------------------------------------------------------------- /MNIST/include/rk_comm_vpss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_comm_vpss.h -------------------------------------------------------------------------------- /MNIST/include/rk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_common.h -------------------------------------------------------------------------------- /MNIST/include/rk_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_debug.h -------------------------------------------------------------------------------- /MNIST/include/rk_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_defines.h -------------------------------------------------------------------------------- /MNIST/include/rk_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_errno.h -------------------------------------------------------------------------------- /MNIST/include/rk_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_event.h -------------------------------------------------------------------------------- /MNIST/include/rk_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_gpio.h -------------------------------------------------------------------------------- /MNIST/include/rk_led.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_led.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_adec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_adec.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_aenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_aenc.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_af.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_af.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_ai.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_amix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_amix.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_ao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_ao.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_avs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_avs.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_cal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_cal.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_ivs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_ivs.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_mb.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_mmz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_mmz.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_rgn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_rgn.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_sys.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_tde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_tde.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_vdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_vdec.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_venc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_venc.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_vgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_vgs.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_vi.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_vo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_vo.h -------------------------------------------------------------------------------- /MNIST/include/rk_mpi_vpss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_mpi_vpss.h -------------------------------------------------------------------------------- /MNIST/include/rk_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_pwm.h -------------------------------------------------------------------------------- /MNIST/include/rk_sysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_sysfs.h -------------------------------------------------------------------------------- /MNIST/include/rk_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_system.h -------------------------------------------------------------------------------- /MNIST/include/rk_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_time.h -------------------------------------------------------------------------------- /MNIST/include/rk_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_type.h -------------------------------------------------------------------------------- /MNIST/include/rk_watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rk_watchdog.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/acp/rk_aiq_uapi_acp_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/acp/rk_aiq_uapi_acp_int.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/ae/rk_aiq_types_ae_algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/ae/rk_aiq_types_ae_algo.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/ae/rk_aiq_types_ae_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/ae/rk_aiq_types_ae_hw.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/ae/rk_aiq_uapi_ae_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/ae/rk_aiq_uapi_ae_int.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/af/rk_aiq_af_hw_v200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/af/rk_aiq_af_hw_v200.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/af/rk_aiq_types_af_algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/af/rk_aiq_types_af_algo.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/af/rk_aiq_uapi_af_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/af/rk_aiq_uapi_af_int.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/afec/fec_algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/afec/fec_algo.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/aie/rk_aiq_uapi_aie_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/aie/rk_aiq_uapi_aie_int.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/anr/rk_aiq_types_anr_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/anr/rk_aiq_types_anr_hw.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/anr/rk_aiq_uapi_anr_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/anr/rk_aiq_uapi_anr_int.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/aorb/rk_aiq_orb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/aorb/rk_aiq_orb_hw.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/asd/rk_aiq_uapi_asd_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/asd/rk_aiq_uapi_asd_int.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/awb/rk_aiq_uapi_awb_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/awb/rk_aiq_uapi_awb_int.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/rk_aiq_algo_des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/rk_aiq_algo_des.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/algos/rk_aiq_algo_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/algos/rk_aiq_algo_types.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/list.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/mediactl/mediactl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/mediactl/mediactl.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/panorama_stitchingApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/panorama_stitchingApp.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rk-camera-module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rk-camera-module.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rk_aiq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rk_aiq.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rk_aiq_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rk_aiq_comm.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rk_aiq_mems_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rk_aiq_mems_sensor.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rk_aiq_offline_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rk_aiq_offline_raw.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rk_aiq_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rk_aiq_types.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rk_aiq_types_v32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rk_aiq_types_v32.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rk_aiq_types_v3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rk_aiq_types_v3x.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rk_isp20_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rk_isp20_hw.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rkaiq_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rkaiq_ini.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rkisp2-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rkisp2-config.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rkisp21-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rkisp21-config.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rkisp3-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rkisp3-config.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/common/rkisp32-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/common/rkisp32-config.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/config.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/ipc_server/rkaiq_tool_ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/ipc_server/rkaiq_tool_ae.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/ipc_server/rkaiq_tool_anr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/ipc_server/rkaiq_tool_anr.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/ipc_server/rkaiq_tool_imgproc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/ipc_server/rkaiq_tool_imgproc.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/ipc_server/rkaiq_tool_sharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/ipc_server/rkaiq_tool_sharp.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/ipc_server/rkaiq_tool_sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/ipc_server/rkaiq_tool_sysctl.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/ipc_server/socket_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/ipc_server/socket_server.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser/RkAiqCalibApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser/RkAiqCalibApi.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser/RkAiqCalibDbTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser/RkAiqCalibDbTypes.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/RkAiqCalibDbV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/RkAiqCalibDbV2.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/RkAiqUapitypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/RkAiqUapitypes.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/ablc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/ablc_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/ablc_head_V32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/ablc_head_V32.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/adegamma_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/adegamma_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/adehaze_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/adehaze_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/adpcc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/adpcc_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/adrc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/adrc_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/adrc_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/adrc_uapi_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/aec_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/aec_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/aec_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/aec_uapi_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/af_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/af_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/agamma_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/agamma_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/agamma_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/agamma_uapi_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/agic_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/agic_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/aie_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/aie_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/alsc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/alsc_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/amerge_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/amerge_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/amerge_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/amerge_uapi_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/atmo_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/atmo_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/atmo_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/atmo_uapi_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/awb_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/awb_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/awb_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/awb_uapi_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/bayernr_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/bayernr_head_v1.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/bayernr_head_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/bayernr_head_v2.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/bayertnr_head_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/bayertnr_head_v2.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/cac_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/cac_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/ccm_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/ccm_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/ccm_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/ccm_uapi_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/cgc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/cgc_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/cnr_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/cnr_head_v1.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/cnr_head_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/cnr_head_v2.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/cnr_head_v30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/cnr_head_v30.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/cproc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/cproc_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/cpsl_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/cpsl_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/csm_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/csm_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/debayer_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/debayer_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/eis_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/eis_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/fec_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/fec_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/gain_head_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/gain_head_v2.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/j2s/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/j2s/cJSON.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/j2s/cJSON_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/j2s/cJSON_Utils.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/j2s/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/j2s/common.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/j2s/j2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/j2s/j2s.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/ldch_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/ldch_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/lut3d_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/lut3d_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/mfnr_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/mfnr_head_v1.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/moduleinfo_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/moduleinfo_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/orb_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/orb_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/sensorinfo_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/sensorinfo_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/sharp_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/sharp_head_v1.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/sharp_head_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/sharp_head_v3.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/sharp_head_v33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/sharp_head_v33.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/sharp_head_v4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/sharp_head_v4.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/thumbnails_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/thumbnails_head.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/uvnr_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/uvnr_head_v1.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/ynr_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/ynr_head_v1.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/ynr_head_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/ynr_head_v2.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/ynr_head_v22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/ynr_head_v22.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/iq_parser_v2/ynr_head_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/iq_parser_v2/ynr_head_v3.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/smartIr/rk_smart_ir_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/smartIr/rk_smart_ir_api.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_a3dlut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_a3dlut.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_ablc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_ablc.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_acac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_acac.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_accm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_accm.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_acgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_acgc.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_acp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_acp.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_acsm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_acsm.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_adpcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_adpcc.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_adrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_adrc.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_ae.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_af.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_af.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_afec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_afec.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_agamma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_agamma.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_agic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_agic.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_aie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_aie.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_aldch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_aldch.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_alsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_alsc.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_amerge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_amerge.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_anr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_anr.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_atmo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_atmo.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_awb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_awb.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_debug.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_helper.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_sysctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api2_sysctl.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/uAPI2/rk_aiq_user_api_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/uAPI2/rk_aiq_user_api_common.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/xcore/base/xcam_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/xcore/base/xcam_buffer.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/xcore/base/xcam_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/xcore/base/xcam_common.h -------------------------------------------------------------------------------- /MNIST/include/rkaiq/xcore/base/xcam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaiq/xcore/base/xcam_defs.h -------------------------------------------------------------------------------- /MNIST/include/rkaudio_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaudio_preprocess.h -------------------------------------------------------------------------------- /MNIST/include/rkaudio_sed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkaudio_sed.h -------------------------------------------------------------------------------- /MNIST/include/rkbar_scan_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkbar_scan_api.h -------------------------------------------------------------------------------- /MNIST/include/rkdemuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkdemuxer.h -------------------------------------------------------------------------------- /MNIST/include/rkmuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rkmuxer.h -------------------------------------------------------------------------------- /MNIST/include/rknn/mnist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rknn/mnist.h -------------------------------------------------------------------------------- /MNIST/include/rknn/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rknn/postprocess.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/mpp_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/mpp_buffer.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/mpp_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/mpp_err.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/mpp_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/mpp_frame.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/mpp_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/mpp_meta.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/mpp_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/mpp_packet.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/mpp_rc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/mpp_rc_api.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/mpp_rc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/mpp_rc_defs.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/mpp_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/mpp_task.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/rk_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/rk_mpi.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/rk_mpi_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/rk_mpi_cmd.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/rk_mpi_mb_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/rk_mpi_mb_cmd.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/rk_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/rk_type.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/rk_vdec_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/rk_vdec_cfg.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/rk_vdec_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/rk_vdec_cmd.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/rk_venc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/rk_venc_cfg.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/rk_venc_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/rk_venc_cmd.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/rk_venc_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/rk_venc_rc.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/rk_venc_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/rk_venc_ref.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/vpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/vpu.h -------------------------------------------------------------------------------- /MNIST/include/rockchip/vpu_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockchip/vpu_api.h -------------------------------------------------------------------------------- /MNIST/include/rockiva/rockiva_ba_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockiva/rockiva_ba_api.h -------------------------------------------------------------------------------- /MNIST/include/rockiva/rockiva_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockiva/rockiva_common.h -------------------------------------------------------------------------------- /MNIST/include/rockiva/rockiva_det_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockiva/rockiva_det_api.h -------------------------------------------------------------------------------- /MNIST/include/rockiva/rockiva_face_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockiva/rockiva_face_api.h -------------------------------------------------------------------------------- /MNIST/include/rockiva/rockiva_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockiva/rockiva_image.h -------------------------------------------------------------------------------- /MNIST/include/rockive/ivs_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockive/ivs_md.h -------------------------------------------------------------------------------- /MNIST/include/rockive/rk_comm_ive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockive/rk_comm_ive.h -------------------------------------------------------------------------------- /MNIST/include/rockive/rk_ive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockive/rk_ive.h -------------------------------------------------------------------------------- /MNIST/include/rockive/rk_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockive/rk_md.h -------------------------------------------------------------------------------- /MNIST/include/rockive/rk_mpi_ive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rockive/rk_mpi_ive.h -------------------------------------------------------------------------------- /MNIST/include/rtsp_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/rtsp_demo.h -------------------------------------------------------------------------------- /MNIST/include/skv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/skv.h -------------------------------------------------------------------------------- /MNIST/include/xf86drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/xf86drm.h -------------------------------------------------------------------------------- /MNIST/include/xf86drmMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/include/xf86drmMode.h -------------------------------------------------------------------------------- /MNIST/lib/cmake/opencv4/OpenCVConfig-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/cmake/opencv4/OpenCVConfig-version.cmake -------------------------------------------------------------------------------- /MNIST/lib/cmake/opencv4/OpenCVConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/cmake/opencv4/OpenCVConfig.cmake -------------------------------------------------------------------------------- /MNIST/lib/cmake/opencv4/OpenCVModules-release.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/cmake/opencv4/OpenCVModules-release.cmake -------------------------------------------------------------------------------- /MNIST/lib/cmake/opencv4/OpenCVModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/cmake/opencv4/OpenCVModules.cmake -------------------------------------------------------------------------------- /MNIST/lib/face_mask_classify.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/face_mask_classify.data -------------------------------------------------------------------------------- /MNIST/lib/face_quality_v2.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/face_quality_v2.data -------------------------------------------------------------------------------- /MNIST/lib/libdrm.so.2: -------------------------------------------------------------------------------- 1 | libdrm.so.2.4.0 -------------------------------------------------------------------------------- /MNIST/lib/libdrm.so.2.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/libdrm.so.2.4.0 -------------------------------------------------------------------------------- /MNIST/lib/libdrm_rockchip.so.1: -------------------------------------------------------------------------------- 1 | libdrm_rockchip.so.1.0.0 -------------------------------------------------------------------------------- /MNIST/lib/libdrm_rockchip.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/libdrm_rockchip.so.1.0.0 -------------------------------------------------------------------------------- /MNIST/lib/libiconv.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/libiconv.so.2 -------------------------------------------------------------------------------- /MNIST/lib/libiconv.so.2.6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/libiconv.so.2.6.1 -------------------------------------------------------------------------------- /MNIST/lib/libkms.so.1: -------------------------------------------------------------------------------- 1 | libkms.so.1.0.0 -------------------------------------------------------------------------------- /MNIST/lib/libkms.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/libkms.so.1.0.0 -------------------------------------------------------------------------------- /MNIST/lib/librockchip_mpp.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/librockchip_mpp.so.0 -------------------------------------------------------------------------------- /MNIST/lib/librockchip_mpp.so.1: -------------------------------------------------------------------------------- 1 | librockchip_mpp.so.0 -------------------------------------------------------------------------------- /MNIST/lib/libz.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/libz.so.1 -------------------------------------------------------------------------------- /MNIST/lib/object_detection_ipc_cls7.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/object_detection_ipc_cls7.data -------------------------------------------------------------------------------- /MNIST/lib/object_detection_ipc_cls7_v.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/object_detection_ipc_cls7_v.data -------------------------------------------------------------------------------- /MNIST/lib/object_detection_pfp.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/object_detection_pfp.data -------------------------------------------------------------------------------- /MNIST/lib/object_detection_pfp_896x512.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/object_detection_pfp_896x512.data -------------------------------------------------------------------------------- /MNIST/lib/pkgconfig/libdrm.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/pkgconfig/libdrm.pc -------------------------------------------------------------------------------- /MNIST/lib/pkgconfig/libdrm_rockchip.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/pkgconfig/libdrm_rockchip.pc -------------------------------------------------------------------------------- /MNIST/lib/pkgconfig/libkms.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/lib/pkgconfig/libkms.pc -------------------------------------------------------------------------------- /MNIST/model/mnist.rknn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/model/mnist.rknn -------------------------------------------------------------------------------- /MNIST/src/luckfox_mpi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/src/luckfox_mpi.cc -------------------------------------------------------------------------------- /MNIST/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/src/main.cc -------------------------------------------------------------------------------- /MNIST/src/mnist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/MNIST/src/mnist.cc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/README.md -------------------------------------------------------------------------------- /doc/MNIST-rtsp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/doc/MNIST-rtsp.jpg -------------------------------------------------------------------------------- /doc/framebuffer-badapple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/doc/framebuffer-badapple.jpg -------------------------------------------------------------------------------- /doc/framebuffer-pico-pin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/doc/framebuffer-pico-pin.jpg -------------------------------------------------------------------------------- /doc/framebuffer-st7735-pin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/doc/framebuffer-st7735-pin.jpg -------------------------------------------------------------------------------- /framebuffer/bad-apple-160x128.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/framebuffer/bad-apple-160x128.mp4 -------------------------------------------------------------------------------- /framebuffer/rv1106g-luckfox-pico-pro-max.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/framebuffer/rv1106g-luckfox-pico-pro-max.dts -------------------------------------------------------------------------------- /framebuffer/st7735test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/framebuffer/st7735test.c -------------------------------------------------------------------------------- /rkmpi/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/rkmpi/CMakeLists.txt -------------------------------------------------------------------------------- /rkmpi/luckfox_mpi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/rkmpi/luckfox_mpi.cc -------------------------------------------------------------------------------- /rkmpi/rkmpi-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/rkmpi/rkmpi-test.cc -------------------------------------------------------------------------------- /rkrtsp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/rkrtsp/CMakeLists.txt -------------------------------------------------------------------------------- /rkrtsp/luckfox_mpi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/rkrtsp/luckfox_mpi.cc -------------------------------------------------------------------------------- /rkrtsp/rkrtsp-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/rkrtsp/rkrtsp-test.cc -------------------------------------------------------------------------------- /sources/3rdparty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/CMakeLists.txt -------------------------------------------------------------------------------- /sources/3rdparty/allocator/dma/dma_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/allocator/dma/dma_alloc.cpp -------------------------------------------------------------------------------- /sources/3rdparty/allocator/dma/dma_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/allocator/dma/dma_alloc.h -------------------------------------------------------------------------------- /sources/3rdparty/allocator/drm/drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/allocator/drm/drm.h -------------------------------------------------------------------------------- /sources/3rdparty/allocator/drm/drm_alloc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/allocator/drm/drm_alloc.cpp -------------------------------------------------------------------------------- /sources/3rdparty/allocator/drm/drm_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/allocator/drm/drm_alloc.h -------------------------------------------------------------------------------- /sources/3rdparty/allocator/drm/drm_fourcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/allocator/drm/drm_fourcc.h -------------------------------------------------------------------------------- /sources/3rdparty/allocator/drm/drm_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/allocator/drm/drm_mode.h -------------------------------------------------------------------------------- /sources/3rdparty/allocator/drm/xf86drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/allocator/drm/xf86drm.h -------------------------------------------------------------------------------- /sources/3rdparty/jpeg_turbo/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/jpeg_turbo/LICENSE.md -------------------------------------------------------------------------------- /sources/3rdparty/jpeg_turbo/include/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/jpeg_turbo/include/jconfig.h -------------------------------------------------------------------------------- /sources/3rdparty/jpeg_turbo/include/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/jpeg_turbo/include/jerror.h -------------------------------------------------------------------------------- /sources/3rdparty/jpeg_turbo/include/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/jpeg_turbo/include/jmorecfg.h -------------------------------------------------------------------------------- /sources/3rdparty/jpeg_turbo/include/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/jpeg_turbo/include/jpeglib.h -------------------------------------------------------------------------------- /sources/3rdparty/jpeg_turbo/include/turbojpeg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/jpeg_turbo/include/turbojpeg.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/README.md -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/GrallocOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/GrallocOps.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/RgaApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/RgaApi.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/RgaMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/RgaMutex.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/RgaSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/RgaSingleton.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/RgaUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/RgaUtils.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/RockchipRga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/RockchipRga.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/drmrga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/drmrga.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/im2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/im2d.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/im2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/im2d.hpp -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/im2d_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/im2d_buffer.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/im2d_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/im2d_common.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/im2d_expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/im2d_expand.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/im2d_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/im2d_mpi.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/im2d_single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/im2d_single.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/im2d_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/im2d_task.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/im2d_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/im2d_type.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/im2d_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/im2d_version.h -------------------------------------------------------------------------------- /sources/3rdparty/librga/include/rga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/librga/include/rga.h -------------------------------------------------------------------------------- /sources/3rdparty/opencl/libopencl-stub/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/opencl/libopencl-stub/Android.mk -------------------------------------------------------------------------------- /sources/3rdparty/opencl/libopencl-stub/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/opencl/libopencl-stub/LICENSE -------------------------------------------------------------------------------- /sources/3rdparty/opencl/libopencl-stub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/opencl/libopencl-stub/Makefile -------------------------------------------------------------------------------- /sources/3rdparty/opencl/libopencl-stub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/opencl/libopencl-stub/README.md -------------------------------------------------------------------------------- /sources/3rdparty/rknpu2/include/Float16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/rknpu2/include/Float16.h -------------------------------------------------------------------------------- /sources/3rdparty/rknpu2/include/rknn_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/rknpu2/include/rknn_api.h -------------------------------------------------------------------------------- /sources/3rdparty/rknpu2/include/rknn_custom_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/rknpu2/include/rknn_custom_op.h -------------------------------------------------------------------------------- /sources/3rdparty/rknpu2/include/rknn_matmul_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/rknpu2/include/rknn_matmul_api.h -------------------------------------------------------------------------------- /sources/3rdparty/stb_image/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/stb_image/LICENSE.txt -------------------------------------------------------------------------------- /sources/3rdparty/stb_image/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/stb_image/stb_image.h -------------------------------------------------------------------------------- /sources/3rdparty/stb_image/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/3rdparty/stb_image/stb_image_write.h -------------------------------------------------------------------------------- /sources/common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/Makefile -------------------------------------------------------------------------------- /sources/common/fillimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/fillimage.c -------------------------------------------------------------------------------- /sources/common/isp2.x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/isp2.x/Makefile -------------------------------------------------------------------------------- /sources/common/isp2.x/sample_comm_isp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/isp2.x/sample_comm_isp.c -------------------------------------------------------------------------------- /sources/common/isp2.x/sample_comm_isp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/isp2.x/sample_comm_isp.h -------------------------------------------------------------------------------- /sources/common/isp3.x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/isp3.x/Makefile -------------------------------------------------------------------------------- /sources/common/isp3.x/sample_comm_isp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/isp3.x/sample_comm_isp.c -------------------------------------------------------------------------------- /sources/common/isp3.x/sample_comm_isp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/isp3.x/sample_comm_isp.h -------------------------------------------------------------------------------- /sources/common/loadbmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/loadbmp.c -------------------------------------------------------------------------------- /sources/common/loadbmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/loadbmp.h -------------------------------------------------------------------------------- /sources/common/rtsp_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/rtsp_demo.h -------------------------------------------------------------------------------- /sources/common/sample_comm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm.c -------------------------------------------------------------------------------- /sources/common/sample_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm.h -------------------------------------------------------------------------------- /sources/common/sample_comm_aenc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_aenc.c -------------------------------------------------------------------------------- /sources/common/sample_comm_ai.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_ai.c -------------------------------------------------------------------------------- /sources/common/sample_comm_ao.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_ao.c -------------------------------------------------------------------------------- /sources/common/sample_comm_avs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_avs.c -------------------------------------------------------------------------------- /sources/common/sample_comm_iva.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_iva.c -------------------------------------------------------------------------------- /sources/common/sample_comm_ivs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_ivs.c -------------------------------------------------------------------------------- /sources/common/sample_comm_rgn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_rgn.c -------------------------------------------------------------------------------- /sources/common/sample_comm_tde.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_tde.c -------------------------------------------------------------------------------- /sources/common/sample_comm_venc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_venc.c -------------------------------------------------------------------------------- /sources/common/sample_comm_vi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_vi.c -------------------------------------------------------------------------------- /sources/common/sample_comm_vo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_vo.c -------------------------------------------------------------------------------- /sources/common/sample_comm_vpss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/common/sample_comm_vpss.c -------------------------------------------------------------------------------- /sources/include/aenc_mp3_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/aenc_mp3_register.h -------------------------------------------------------------------------------- /sources/include/audio_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/audio_server.h -------------------------------------------------------------------------------- /sources/include/iio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/iio.h -------------------------------------------------------------------------------- /sources/include/libRkScalerApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/libRkScalerApi.h -------------------------------------------------------------------------------- /sources/include/libkms/libkms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/libkms/libkms.h -------------------------------------------------------------------------------- /sources/include/libsync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/libsync.h -------------------------------------------------------------------------------- /sources/include/luckfox_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/luckfox_mpi.h -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/affine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/affine.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/async.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/async.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/base.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/bufferpool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/bufferpool.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/check.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/core.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/core_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/core_c.h -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/cuda.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/cuda.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/cuda.inl.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/cuda/block.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/cuda/block.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/cuda/color.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/cuda/color.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/cuda/scan.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/cuda/scan.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/cuda/warp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/cuda/warp.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/cuda_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/cuda_types.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/cvdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/cvdef.h -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/cvstd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/cvstd.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/cvstd.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/cvstd.inl.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/directx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/directx.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/eigen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/eigen.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/fast_math.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/fast_math.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/hal/hal.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/hal/intrin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/hal/intrin.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/mat.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/mat.inl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/mat.inl.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/matx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/matx.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/neon_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/neon_utils.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/ocl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/ocl.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/opengl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/opengl.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/operations.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/optim.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/optim.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/ovx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/ovx.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/quaternion.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/saturate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/saturate.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/softfloat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/softfloat.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/sse_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/sse_utils.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/traits.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/types.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/types_c.h -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/utility.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/utils/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/utils/tls.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/va_intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/va_intel.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/version.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/core/vsx_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/core/vsx_utils.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/cvconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/cvconfig.h -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/features2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/features2d.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/highgui.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/highgui/highgui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/highgui/highgui.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/imgproc.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/imgproc/hal/hal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/imgproc/hal/hal.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/imgproc/imgproc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/imgproc/imgproc.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/imgproc/imgproc_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/imgproc/imgproc_c.h -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/imgproc/types_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/imgproc/types_c.h -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/opencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/opencv.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/opencv_modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/opencv_modules.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/photo.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/photo/cuda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/photo/cuda.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/photo/photo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/photo/photo.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/video.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/video/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/video/tracking.hpp -------------------------------------------------------------------------------- /sources/include/opencv4/opencv2/video/video.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/opencv4/opencv2/video/video.hpp -------------------------------------------------------------------------------- /sources/include/rga/GrallocOps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/GrallocOps.h -------------------------------------------------------------------------------- /sources/include/rga/RgaApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/RgaApi.h -------------------------------------------------------------------------------- /sources/include/rga/RgaMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/RgaMutex.h -------------------------------------------------------------------------------- /sources/include/rga/RgaSingleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/RgaSingleton.h -------------------------------------------------------------------------------- /sources/include/rga/RgaUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/RgaUtils.h -------------------------------------------------------------------------------- /sources/include/rga/RockchipRga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/RockchipRga.h -------------------------------------------------------------------------------- /sources/include/rga/drmrga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/drmrga.h -------------------------------------------------------------------------------- /sources/include/rga/im2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/im2d.h -------------------------------------------------------------------------------- /sources/include/rga/im2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/im2d.hpp -------------------------------------------------------------------------------- /sources/include/rga/im2d_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/im2d_buffer.h -------------------------------------------------------------------------------- /sources/include/rga/im2d_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/im2d_common.h -------------------------------------------------------------------------------- /sources/include/rga/im2d_expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/im2d_expand.h -------------------------------------------------------------------------------- /sources/include/rga/im2d_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/im2d_mpi.h -------------------------------------------------------------------------------- /sources/include/rga/im2d_single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/im2d_single.h -------------------------------------------------------------------------------- /sources/include/rga/im2d_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/im2d_task.h -------------------------------------------------------------------------------- /sources/include/rga/im2d_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/im2d_type.h -------------------------------------------------------------------------------- /sources/include/rga/im2d_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/im2d_version.h -------------------------------------------------------------------------------- /sources/include/rga/rga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rga/rga.h -------------------------------------------------------------------------------- /sources/include/rkAVS_stitchFor1106.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkAVS_stitchFor1106.h -------------------------------------------------------------------------------- /sources/include/rk_adc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_adc.h -------------------------------------------------------------------------------- /sources/include/rk_comm_adec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_adec.h -------------------------------------------------------------------------------- /sources/include/rk_comm_aenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_aenc.h -------------------------------------------------------------------------------- /sources/include/rk_comm_af.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_af.h -------------------------------------------------------------------------------- /sources/include/rk_comm_aio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_aio.h -------------------------------------------------------------------------------- /sources/include/rk_comm_avs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_avs.h -------------------------------------------------------------------------------- /sources/include/rk_comm_ivs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_ivs.h -------------------------------------------------------------------------------- /sources/include/rk_comm_mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_mb.h -------------------------------------------------------------------------------- /sources/include/rk_comm_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_rc.h -------------------------------------------------------------------------------- /sources/include/rk_comm_rgn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_rgn.h -------------------------------------------------------------------------------- /sources/include/rk_comm_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_sys.h -------------------------------------------------------------------------------- /sources/include/rk_comm_tde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_tde.h -------------------------------------------------------------------------------- /sources/include/rk_comm_vdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_vdec.h -------------------------------------------------------------------------------- /sources/include/rk_comm_venc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_venc.h -------------------------------------------------------------------------------- /sources/include/rk_comm_vgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_vgs.h -------------------------------------------------------------------------------- /sources/include/rk_comm_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_vi.h -------------------------------------------------------------------------------- /sources/include/rk_comm_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_video.h -------------------------------------------------------------------------------- /sources/include/rk_comm_vo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_vo.h -------------------------------------------------------------------------------- /sources/include/rk_comm_vpss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_comm_vpss.h -------------------------------------------------------------------------------- /sources/include/rk_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_common.h -------------------------------------------------------------------------------- /sources/include/rk_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_debug.h -------------------------------------------------------------------------------- /sources/include/rk_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_defines.h -------------------------------------------------------------------------------- /sources/include/rk_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_errno.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_adec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_adec.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_aenc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_aenc.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_af.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_af.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_ai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_ai.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_amix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_amix.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_ao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_ao.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_avs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_avs.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_cal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_cal.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_ivs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_ivs.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_mb.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_mmz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_mmz.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_rgn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_rgn.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_sys.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_tde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_tde.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_vdec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_vdec.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_venc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_venc.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_vgs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_vgs.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_vi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_vi.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_vo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_vo.h -------------------------------------------------------------------------------- /sources/include/rk_mpi_vpss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_mpi_vpss.h -------------------------------------------------------------------------------- /sources/include/rk_pwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_pwm.h -------------------------------------------------------------------------------- /sources/include/rk_sysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_sysfs.h -------------------------------------------------------------------------------- /sources/include/rk_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_system.h -------------------------------------------------------------------------------- /sources/include/rk_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_time.h -------------------------------------------------------------------------------- /sources/include/rk_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_type.h -------------------------------------------------------------------------------- /sources/include/rk_watchdog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rk_watchdog.h -------------------------------------------------------------------------------- /sources/include/rkaiq/algos/ae/rk_aiq_types_ae_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/algos/ae/rk_aiq_types_ae_hw.h -------------------------------------------------------------------------------- /sources/include/rkaiq/algos/ae/rk_aiq_uapi_ae_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/algos/ae/rk_aiq_uapi_ae_int.h -------------------------------------------------------------------------------- /sources/include/rkaiq/algos/af/rk_aiq_af_hw_v200.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/algos/af/rk_aiq_af_hw_v200.h -------------------------------------------------------------------------------- /sources/include/rkaiq/algos/af/rk_aiq_uapi_af_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/algos/af/rk_aiq_uapi_af_int.h -------------------------------------------------------------------------------- /sources/include/rkaiq/algos/afec/fec_algo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/algos/afec/fec_algo.h -------------------------------------------------------------------------------- /sources/include/rkaiq/algos/aorb/rk_aiq_orb_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/algos/aorb/rk_aiq_orb_hw.h -------------------------------------------------------------------------------- /sources/include/rkaiq/algos/rk_aiq_algo_des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/algos/rk_aiq_algo_des.h -------------------------------------------------------------------------------- /sources/include/rkaiq/algos/rk_aiq_algo_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/algos/rk_aiq_algo_types.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/list.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/mediactl/mediactl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/mediactl/mediactl.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rk-camera-module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rk-camera-module.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rk_aiq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rk_aiq.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rk_aiq_comm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rk_aiq_comm.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rk_aiq_mems_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rk_aiq_mems_sensor.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rk_aiq_offline_raw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rk_aiq_offline_raw.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rk_aiq_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rk_aiq_types.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rk_aiq_types_v32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rk_aiq_types_v32.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rk_aiq_types_v3x.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rk_aiq_types_v3x.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rk_isp20_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rk_isp20_hw.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rkaiq_ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rkaiq_ini.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rkisp2-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rkisp2-config.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rkisp21-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rkisp21-config.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rkisp3-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rkisp3-config.h -------------------------------------------------------------------------------- /sources/include/rkaiq/common/rkisp32-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/common/rkisp32-config.h -------------------------------------------------------------------------------- /sources/include/rkaiq/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/config.h -------------------------------------------------------------------------------- /sources/include/rkaiq/ipc_server/rkaiq_tool_ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/ipc_server/rkaiq_tool_ae.h -------------------------------------------------------------------------------- /sources/include/rkaiq/ipc_server/rkaiq_tool_anr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/ipc_server/rkaiq_tool_anr.h -------------------------------------------------------------------------------- /sources/include/rkaiq/ipc_server/rkaiq_tool_sharp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/ipc_server/rkaiq_tool_sharp.h -------------------------------------------------------------------------------- /sources/include/rkaiq/ipc_server/socket_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/ipc_server/socket_server.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser/RkAiqCalibApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser/RkAiqCalibApi.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser/RkAiqCalibDbTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser/RkAiqCalibDbTypes.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/RkAiqCalibDbV2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/RkAiqCalibDbV2.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/RkAiqUapitypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/RkAiqUapitypes.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/ablc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/ablc_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/ablc_head_V32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/ablc_head_V32.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/adegamma_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/adegamma_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/adehaze_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/adehaze_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/adpcc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/adpcc_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/adrc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/adrc_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/adrc_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/adrc_uapi_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/aec_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/aec_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/aec_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/aec_uapi_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/af_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/af_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/agamma_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/agamma_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/agic_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/agic_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/aie_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/aie_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/alsc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/alsc_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/amerge_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/amerge_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/atmo_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/atmo_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/atmo_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/atmo_uapi_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/awb_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/awb_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/awb_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/awb_uapi_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/cac_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/cac_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/ccm_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/ccm_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/ccm_uapi_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/ccm_uapi_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/cgc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/cgc_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/cnr_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/cnr_head_v1.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/cnr_head_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/cnr_head_v2.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/cnr_head_v30.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/cnr_head_v30.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/cproc_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/cproc_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/cpsl_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/cpsl_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/csm_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/csm_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/debayer_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/debayer_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/eis_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/eis_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/fec_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/fec_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/gain_head_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/gain_head_v2.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/j2s/cJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/j2s/cJSON.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/j2s/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/j2s/common.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/j2s/j2s.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/j2s/j2s.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/ldch_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/ldch_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/lut3d_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/lut3d_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/mfnr_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/mfnr_head_v1.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/orb_head.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/orb_head.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/sharp_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/sharp_head_v1.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/sharp_head_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/sharp_head_v3.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/sharp_head_v33.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/sharp_head_v33.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/uvnr_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/uvnr_head_v1.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/ynr_head_v1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/ynr_head_v1.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/ynr_head_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/ynr_head_v2.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/ynr_head_v22.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/ynr_head_v22.h -------------------------------------------------------------------------------- /sources/include/rkaiq/iq_parser_v2/ynr_head_v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/iq_parser_v2/ynr_head_v3.h -------------------------------------------------------------------------------- /sources/include/rkaiq/smartIr/rk_smart_ir_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/smartIr/rk_smart_ir_api.h -------------------------------------------------------------------------------- /sources/include/rkaiq/uAPI2/rk_aiq_user_api2_ae.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/uAPI2/rk_aiq_user_api2_ae.h -------------------------------------------------------------------------------- /sources/include/rkaiq/uAPI2/rk_aiq_user_api2_af.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/uAPI2/rk_aiq_user_api2_af.h -------------------------------------------------------------------------------- /sources/include/rkaiq/xcore/base/xcam_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/xcore/base/xcam_buffer.h -------------------------------------------------------------------------------- /sources/include/rkaiq/xcore/base/xcam_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/xcore/base/xcam_common.h -------------------------------------------------------------------------------- /sources/include/rkaiq/xcore/base/xcam_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaiq/xcore/base/xcam_defs.h -------------------------------------------------------------------------------- /sources/include/rkaudio_preprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaudio_preprocess.h -------------------------------------------------------------------------------- /sources/include/rkaudio_sed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkaudio_sed.h -------------------------------------------------------------------------------- /sources/include/rkbar_scan_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkbar_scan_api.h -------------------------------------------------------------------------------- /sources/include/rkdemuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkdemuxer.h -------------------------------------------------------------------------------- /sources/include/rkmuxer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rkmuxer.h -------------------------------------------------------------------------------- /sources/include/rockchip/mpp_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/mpp_buffer.h -------------------------------------------------------------------------------- /sources/include/rockchip/mpp_err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/mpp_err.h -------------------------------------------------------------------------------- /sources/include/rockchip/mpp_frame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/mpp_frame.h -------------------------------------------------------------------------------- /sources/include/rockchip/mpp_meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/mpp_meta.h -------------------------------------------------------------------------------- /sources/include/rockchip/mpp_packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/mpp_packet.h -------------------------------------------------------------------------------- /sources/include/rockchip/mpp_rc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/mpp_rc_api.h -------------------------------------------------------------------------------- /sources/include/rockchip/mpp_rc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/mpp_rc_defs.h -------------------------------------------------------------------------------- /sources/include/rockchip/mpp_task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/mpp_task.h -------------------------------------------------------------------------------- /sources/include/rockchip/rk_mpi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/rk_mpi.h -------------------------------------------------------------------------------- /sources/include/rockchip/rk_mpi_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/rk_mpi_cmd.h -------------------------------------------------------------------------------- /sources/include/rockchip/rk_mpi_mb_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/rk_mpi_mb_cmd.h -------------------------------------------------------------------------------- /sources/include/rockchip/rk_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/rk_type.h -------------------------------------------------------------------------------- /sources/include/rockchip/rk_vdec_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/rk_vdec_cfg.h -------------------------------------------------------------------------------- /sources/include/rockchip/rk_vdec_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/rk_vdec_cmd.h -------------------------------------------------------------------------------- /sources/include/rockchip/rk_venc_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/rk_venc_cfg.h -------------------------------------------------------------------------------- /sources/include/rockchip/rk_venc_cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/rk_venc_cmd.h -------------------------------------------------------------------------------- /sources/include/rockchip/rk_venc_rc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/rk_venc_rc.h -------------------------------------------------------------------------------- /sources/include/rockchip/rk_venc_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/rk_venc_ref.h -------------------------------------------------------------------------------- /sources/include/rockchip/vpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/vpu.h -------------------------------------------------------------------------------- /sources/include/rockchip/vpu_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockchip/vpu_api.h -------------------------------------------------------------------------------- /sources/include/rockiva/rockiva_ba_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockiva/rockiva_ba_api.h -------------------------------------------------------------------------------- /sources/include/rockiva/rockiva_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockiva/rockiva_common.h -------------------------------------------------------------------------------- /sources/include/rockiva/rockiva_det_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockiva/rockiva_det_api.h -------------------------------------------------------------------------------- /sources/include/rockiva/rockiva_face_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockiva/rockiva_face_api.h -------------------------------------------------------------------------------- /sources/include/rockiva/rockiva_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockiva/rockiva_image.h -------------------------------------------------------------------------------- /sources/include/rockive/ivs_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockive/ivs_md.h -------------------------------------------------------------------------------- /sources/include/rockive/rk_comm_ive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockive/rk_comm_ive.h -------------------------------------------------------------------------------- /sources/include/rockive/rk_ive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockive/rk_ive.h -------------------------------------------------------------------------------- /sources/include/rockive/rk_md.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockive/rk_md.h -------------------------------------------------------------------------------- /sources/include/rockive/rk_mpi_ive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rockive/rk_mpi_ive.h -------------------------------------------------------------------------------- /sources/include/rtsp_demo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/rtsp_demo.h -------------------------------------------------------------------------------- /sources/include/skv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/skv.h -------------------------------------------------------------------------------- /sources/include/xf86drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/xf86drm.h -------------------------------------------------------------------------------- /sources/include/xf86drmMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/include/xf86drmMode.h -------------------------------------------------------------------------------- /sources/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/README.md -------------------------------------------------------------------------------- /sources/lib/cmake/opencv4/OpenCVConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/cmake/opencv4/OpenCVConfig.cmake -------------------------------------------------------------------------------- /sources/lib/cmake/opencv4/OpenCVModules.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/cmake/opencv4/OpenCVModules.cmake -------------------------------------------------------------------------------- /sources/lib/face_mask_classify.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/face_mask_classify.data -------------------------------------------------------------------------------- /sources/lib/face_quality_v2.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/face_quality_v2.data -------------------------------------------------------------------------------- /sources/lib/libdrm.so.2: -------------------------------------------------------------------------------- 1 | libdrm.so.2.4.0 -------------------------------------------------------------------------------- /sources/lib/libdrm.so.2.4.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/libdrm.so.2.4.0 -------------------------------------------------------------------------------- /sources/lib/libdrm_rockchip.so.1: -------------------------------------------------------------------------------- 1 | libdrm_rockchip.so.1.0.0 -------------------------------------------------------------------------------- /sources/lib/libdrm_rockchip.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/libdrm_rockchip.so.1.0.0 -------------------------------------------------------------------------------- /sources/lib/libiconv.so.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/libiconv.so.2 -------------------------------------------------------------------------------- /sources/lib/libiconv.so.2.6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/libiconv.so.2.6.1 -------------------------------------------------------------------------------- /sources/lib/libkms.so.1: -------------------------------------------------------------------------------- 1 | libkms.so.1.0.0 -------------------------------------------------------------------------------- /sources/lib/libkms.so.1.0.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/libkms.so.1.0.0 -------------------------------------------------------------------------------- /sources/lib/librockchip_mpp.so.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/librockchip_mpp.so.0 -------------------------------------------------------------------------------- /sources/lib/librockchip_mpp.so.1: -------------------------------------------------------------------------------- 1 | librockchip_mpp.so.0 -------------------------------------------------------------------------------- /sources/lib/libz.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/libz.so.1 -------------------------------------------------------------------------------- /sources/lib/object_detection_ipc_cls7.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/object_detection_ipc_cls7.data -------------------------------------------------------------------------------- /sources/lib/object_detection_ipc_cls7_v.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/object_detection_ipc_cls7_v.data -------------------------------------------------------------------------------- /sources/lib/object_detection_pfp.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/object_detection_pfp.data -------------------------------------------------------------------------------- /sources/lib/object_detection_pfp_896x512.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/object_detection_pfp_896x512.data -------------------------------------------------------------------------------- /sources/lib/pkgconfig/libdrm.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/pkgconfig/libdrm.pc -------------------------------------------------------------------------------- /sources/lib/pkgconfig/libdrm_rockchip.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/pkgconfig/libdrm_rockchip.pc -------------------------------------------------------------------------------- /sources/lib/pkgconfig/libkms.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/sources/lib/pkgconfig/libkms.pc -------------------------------------------------------------------------------- /utility/timecost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/utility/timecost.h -------------------------------------------------------------------------------- /v4l2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/v4l2/CMakeLists.txt -------------------------------------------------------------------------------- /v4l2/captureJpgApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/v4l2/captureJpgApp.cpp -------------------------------------------------------------------------------- /v4l2/tools/v4l2CapPicTool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/v4l2/tools/v4l2CapPicTool.cpp -------------------------------------------------------------------------------- /v4l2/tools/v4l2CapPicTool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/v4l2/tools/v4l2CapPicTool.h -------------------------------------------------------------------------------- /yolov5/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/CMakeLists.txt -------------------------------------------------------------------------------- /yolov5/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/main.cc -------------------------------------------------------------------------------- /yolov5/model/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/model/bus.jpg -------------------------------------------------------------------------------- /yolov5/model/coco_80_labels_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/model/coco_80_labels_list.txt -------------------------------------------------------------------------------- /yolov5/model/yolov5s_relu.rknn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/model/yolov5s_relu.rknn -------------------------------------------------------------------------------- /yolov5/postprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/postprocess.cc -------------------------------------------------------------------------------- /yolov5/postprocess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/postprocess.h -------------------------------------------------------------------------------- /yolov5/rknpu2/yolov5_rv1106_1103.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/rknpu2/yolov5_rv1106_1103.cc -------------------------------------------------------------------------------- /yolov5/utils/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/utils/CMakeLists.txt -------------------------------------------------------------------------------- /yolov5/utils/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/utils/common.h -------------------------------------------------------------------------------- /yolov5/utils/file_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/utils/file_utils.c -------------------------------------------------------------------------------- /yolov5/utils/file_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/utils/file_utils.h -------------------------------------------------------------------------------- /yolov5/utils/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/utils/font.h -------------------------------------------------------------------------------- /yolov5/utils/image_drawing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/utils/image_drawing.c -------------------------------------------------------------------------------- /yolov5/utils/image_drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/utils/image_drawing.h -------------------------------------------------------------------------------- /yolov5/utils/image_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/utils/image_utils.c -------------------------------------------------------------------------------- /yolov5/utils/image_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/utils/image_utils.h -------------------------------------------------------------------------------- /yolov5/yolov5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LitchiCheng/RV1106_Linux/HEAD/yolov5/yolov5.h --------------------------------------------------------------------------------