├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .pre-commit-config.yaml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── application ├── CMakeLists.txt ├── LICENSE ├── Makefile ├── README.md ├── formatter.sh ├── main │ ├── CMakeLists.txt │ ├── Kconfig.projbuild │ ├── app_camera_esp.cc │ ├── app_camera_esp.h │ ├── ble_service.cc │ ├── ble_service.h │ ├── idf_component.yml │ ├── image_provider.cc │ ├── image_provider.h │ ├── main.cc │ ├── main_functions.cc │ ├── main_functions.h │ ├── model.cc │ ├── model.h │ ├── model_settings.cc │ ├── model_settings.h │ ├── model_utils.cc │ └── model_utils.h ├── partitions.csv ├── sdkconfig.defaults ├── static_images │ ├── CMakeLists.txt │ └── sample_images │ │ ├── README.md │ │ ├── image0 │ │ ├── image1 │ │ ├── image2 │ │ ├── image3 │ │ ├── image4 │ │ ├── image5 │ │ ├── image6 │ │ ├── image7 │ │ ├── image8 │ │ └── image9 └── unit_tests │ ├── CMakeLists.txt │ ├── app_main.cc │ ├── test_model_utils.cc │ └── test_model_utils.h ├── data_collector ├── datasets │ ├── convert_model_to_tflite.py │ ├── images │ │ ├── test │ │ │ ├── 003.png │ │ │ └── 079.png │ │ ├── train │ │ │ ├── 000.png │ │ │ ├── 002.png │ │ │ ├── 004.png │ │ │ ├── 005.png │ │ │ ├── 006.png │ │ │ ├── 007.png │ │ │ ├── 008.png │ │ │ ├── 009.png │ │ │ ├── 010.png │ │ │ ├── 012.png │ │ │ ├── 013.png │ │ │ ├── 014.png │ │ │ ├── 015.png │ │ │ ├── 016.png │ │ │ ├── 017.png │ │ │ ├── 018.png │ │ │ ├── 019.png │ │ │ ├── 020.png │ │ │ ├── 021.png │ │ │ ├── 022.png │ │ │ ├── 023.png │ │ │ ├── 024.png │ │ │ ├── 025.png │ │ │ ├── 026.png │ │ │ ├── 029.png │ │ │ ├── 030.png │ │ │ ├── 031.png │ │ │ ├── 033.png │ │ │ ├── 034.png │ │ │ ├── 036.png │ │ │ ├── 038.png │ │ │ ├── 039.png │ │ │ ├── 040.png │ │ │ ├── 041.png │ │ │ ├── 042.png │ │ │ ├── 043.png │ │ │ ├── 045.png │ │ │ ├── 046.png │ │ │ ├── 047.png │ │ │ ├── 048.png │ │ │ ├── 049.png │ │ │ ├── 050.png │ │ │ ├── 055.png │ │ │ ├── 057.png │ │ │ ├── 059.png │ │ │ ├── 060.png │ │ │ ├── 061.png │ │ │ ├── 065.png │ │ │ ├── 067.png │ │ │ ├── 068.png │ │ │ ├── 069.png │ │ │ ├── 070.png │ │ │ ├── 071.png │ │ │ ├── 072.png │ │ │ ├── 073.png │ │ │ ├── 074.png │ │ │ ├── 075.png │ │ │ ├── 077.png │ │ │ ├── 078.png │ │ │ ├── 080.png │ │ │ └── 081.png │ │ └── val │ │ │ ├── 011.png │ │ │ ├── 027.png │ │ │ ├── 028.png │ │ │ ├── 032.png │ │ │ ├── 035.png │ │ │ ├── 037.png │ │ │ ├── 044.png │ │ │ ├── 056.png │ │ │ ├── 058.png │ │ │ ├── 062.png │ │ │ ├── 063.png │ │ │ ├── 064.png │ │ │ ├── 066.png │ │ │ └── 076.png │ ├── labels │ │ ├── test │ │ │ ├── 003.txt │ │ │ └── 079.txt │ │ ├── train │ │ │ ├── 000.txt │ │ │ ├── 002.txt │ │ │ ├── 004.txt │ │ │ ├── 005.txt │ │ │ ├── 006.txt │ │ │ ├── 007.txt │ │ │ ├── 008.txt │ │ │ ├── 009.txt │ │ │ ├── 010.txt │ │ │ ├── 012.txt │ │ │ ├── 013.txt │ │ │ ├── 014.txt │ │ │ ├── 015.txt │ │ │ ├── 016.txt │ │ │ ├── 017.txt │ │ │ ├── 018.txt │ │ │ ├── 019.txt │ │ │ ├── 020.txt │ │ │ ├── 021.txt │ │ │ ├── 022.txt │ │ │ ├── 023.txt │ │ │ ├── 024.txt │ │ │ ├── 025.txt │ │ │ ├── 026.txt │ │ │ ├── 029.txt │ │ │ ├── 030.txt │ │ │ ├── 031.txt │ │ │ ├── 033.txt │ │ │ ├── 034.txt │ │ │ ├── 036.txt │ │ │ ├── 038.txt │ │ │ ├── 039.txt │ │ │ ├── 040.txt │ │ │ ├── 041.txt │ │ │ ├── 042.txt │ │ │ ├── 043.txt │ │ │ ├── 045.txt │ │ │ ├── 046.txt │ │ │ ├── 047.txt │ │ │ ├── 048.txt │ │ │ ├── 049.txt │ │ │ ├── 050.txt │ │ │ ├── 055.txt │ │ │ ├── 057.txt │ │ │ ├── 059.txt │ │ │ ├── 060.txt │ │ │ ├── 061.txt │ │ │ ├── 065.txt │ │ │ ├── 067.txt │ │ │ ├── 068.txt │ │ │ ├── 069.txt │ │ │ ├── 070.txt │ │ │ ├── 071.txt │ │ │ ├── 072.txt │ │ │ ├── 073.txt │ │ │ ├── 074.txt │ │ │ ├── 075.txt │ │ │ ├── 077.txt │ │ │ ├── 078.txt │ │ │ ├── 080.txt │ │ │ └── 081.txt │ │ └── val │ │ │ ├── 011.txt │ │ │ ├── 027.txt │ │ │ ├── 028.txt │ │ │ ├── 032.txt │ │ │ ├── 035.txt │ │ │ ├── 037.txt │ │ │ ├── 044.txt │ │ │ ├── 056.txt │ │ │ ├── 058.txt │ │ │ ├── 062.txt │ │ │ ├── 063.txt │ │ │ ├── 064.txt │ │ │ ├── 066.txt │ │ │ └── 076.txt │ ├── show_samples.py │ ├── split_dataset.py │ └── utils.py ├── esp32 │ ├── CMakeLists.txt │ ├── main │ │ ├── CMakeLists.txt │ │ ├── Kconfig.projbuild │ │ ├── idf_component.yml │ │ ├── main.cc │ │ ├── stream_server.cc │ │ ├── stream_server.h │ │ ├── take_picture.c │ │ ├── wifi.cc │ │ └── wifi.h │ └── sdkconfig.defaults ├── labels.txt ├── model.yaml ├── model_data.yaml └── webserver │ ├── capture.py │ ├── static │ └── uploads │ │ ├── 000.png │ │ ├── 002.png │ │ ├── 003.png │ │ ├── 004.png │ │ ├── 005.png │ │ ├── 006.png │ │ ├── 007.png │ │ ├── 008.png │ │ ├── 009.png │ │ ├── 010.png │ │ ├── 011.png │ │ ├── 012.png │ │ ├── 013.png │ │ ├── 014.png │ │ ├── 015.png │ │ ├── 016.png │ │ ├── 017.png │ │ ├── 018.png │ │ ├── 019.png │ │ ├── 020.png │ │ ├── 021.png │ │ ├── 022.png │ │ ├── 023.png │ │ ├── 024.png │ │ ├── 025.png │ │ ├── 026.png │ │ ├── 027.png │ │ ├── 028.png │ │ ├── 029.png │ │ ├── 030.png │ │ ├── 031.png │ │ ├── 032.png │ │ ├── 033.png │ │ ├── 034.png │ │ ├── 035.png │ │ ├── 036.png │ │ ├── 037.png │ │ ├── 038.png │ │ ├── 039.png │ │ ├── 040.png │ │ ├── 041.png │ │ ├── 042.png │ │ ├── 043.png │ │ ├── 044.png │ │ ├── 045.png │ │ ├── 046.png │ │ ├── 047.png │ │ ├── 048.png │ │ ├── 049.png │ │ ├── 050.png │ │ ├── 055.png │ │ ├── 056.png │ │ ├── 057.png │ │ ├── 058.png │ │ ├── 059.png │ │ ├── 060.png │ │ ├── 061.png │ │ ├── 062.png │ │ ├── 063.png │ │ ├── 064.png │ │ ├── 065.png │ │ ├── 066.png │ │ ├── 067.png │ │ ├── 068.png │ │ ├── 069.png │ │ ├── 070.png │ │ ├── 071.png │ │ ├── 072.png │ │ ├── 073.png │ │ ├── 074.png │ │ ├── 075.png │ │ ├── 076.png │ │ ├── 077.png │ │ ├── 078.png │ │ ├── 079.png │ │ ├── 080.png │ │ ├── 081.png │ │ └── old │ │ ├── 96X96_screws.jpg │ │ ├── 96x96.jpg │ │ ├── 96x96_rgb.jpg │ │ ├── 96x96_rgb.png │ │ ├── HQVGA.jpg │ │ ├── HQVGA_10.jpg │ │ ├── HQVGA_screws.jpg │ │ ├── QQVGA.jpg │ │ ├── QQVGA_01.jpg │ │ ├── QQVGA_02.jpg │ │ ├── QQVGA_03.jpg │ │ ├── QQVGA_screws.jpg │ │ ├── QVGA_15.jpg │ │ ├── QVGA_30.jpg │ │ ├── QVGA_5.jpg │ │ ├── QVGA_screws.jpg │ │ ├── QVGA_screws_30.jpg │ │ └── test.png │ ├── templates │ └── index.html │ ├── uploader.py │ └── webserver.py ├── idf_component.yml ├── readme_extras └── labeling_makesense.png ├── scripts ├── build_examples.sh ├── gh_sync_req.txt └── sync_from_tflite_micro.sh ├── signal ├── micro │ └── kernels │ │ ├── delay.cc │ │ ├── delay_flexbuffers_generated_data.h │ │ ├── energy.cc │ │ ├── energy_flexbuffers_generated_data.h │ │ ├── fft_auto_scale_common.cc │ │ ├── fft_auto_scale_kernel.cc │ │ ├── fft_auto_scale_kernel.h │ │ ├── fft_flexbuffers_generated_data.h │ │ ├── filter_bank.cc │ │ ├── filter_bank_flexbuffers_generated_data.h │ │ ├── filter_bank_log.cc │ │ ├── filter_bank_log_flexbuffers_generated_data.h │ │ ├── filter_bank_spectral_subtraction.cc │ │ ├── filter_bank_spectral_subtraction_flexbuffers_generated_data.h │ │ ├── filter_bank_square_root.cc │ │ ├── filter_bank_square_root.h │ │ ├── filter_bank_square_root_common.cc │ │ ├── framer.cc │ │ ├── framer_flexbuffers_generated_data.h │ │ ├── irfft.cc │ │ ├── irfft.h │ │ ├── overlap_add.cc │ │ ├── overlap_add_flexbuffers_generated_data.h │ │ ├── pcan.cc │ │ ├── pcan_flexbuffers_generated_data.h │ │ ├── rfft.cc │ │ ├── rfft.h │ │ ├── stacker.cc │ │ ├── stacker_flexbuffers_generated_data.h │ │ ├── window.cc │ │ └── window_flexbuffers_generated_data.h └── src │ ├── circular_buffer.cc │ ├── circular_buffer.h │ ├── complex.h │ ├── energy.cc │ ├── energy.h │ ├── fft_auto_scale.cc │ ├── fft_auto_scale.h │ ├── filter_bank.cc │ ├── filter_bank.h │ ├── filter_bank_log.cc │ ├── filter_bank_log.h │ ├── filter_bank_spectral_subtraction.cc │ ├── filter_bank_spectral_subtraction.h │ ├── filter_bank_square_root.cc │ ├── filter_bank_square_root.h │ ├── irfft.h │ ├── irfft_float.cc │ ├── irfft_int16.cc │ ├── irfft_int32.cc │ ├── kiss_fft_wrappers │ ├── kiss_fft_common.h │ ├── kiss_fft_float.cc │ ├── kiss_fft_float.h │ ├── kiss_fft_int16.cc │ ├── kiss_fft_int16.h │ ├── kiss_fft_int32.cc │ └── kiss_fft_int32.h │ ├── log.cc │ ├── log.h │ ├── max_abs.cc │ ├── max_abs.h │ ├── msb.h │ ├── msb_32.cc │ ├── msb_64.cc │ ├── overlap_add.cc │ ├── overlap_add.h │ ├── pcan_argc_fixed.cc │ ├── pcan_argc_fixed.h │ ├── rfft.h │ ├── rfft_float.cc │ ├── rfft_int16.cc │ ├── rfft_int32.cc │ ├── square_root.h │ ├── square_root_32.cc │ ├── square_root_64.cc │ ├── window.cc │ └── window.h ├── tensorflow └── lite │ ├── builtin_op_data.h │ ├── builtin_ops.h │ ├── c │ ├── builtin_op_data.h │ ├── c_api_types.h │ └── common.h │ ├── context_util.h │ ├── core │ ├── api │ │ ├── error_reporter.cc │ │ ├── error_reporter.h │ │ ├── flatbuffer_conversions.cc │ │ ├── flatbuffer_conversions.h │ │ ├── tensor_utils.cc │ │ └── tensor_utils.h │ ├── c │ │ ├── builtin_op_data.h │ │ ├── c_api_types.h │ │ ├── common.cc │ │ └── common.h │ └── macros.h │ ├── kernels │ ├── internal │ │ ├── common.cc │ │ ├── common.h │ │ ├── compatibility.h │ │ ├── cppmath.h │ │ ├── max.h │ │ ├── min.h │ │ ├── optimized │ │ │ └── neon_check.h │ │ ├── portable_tensor.h │ │ ├── portable_tensor_utils.cc │ │ ├── portable_tensor_utils.h │ │ ├── quantization_util.cc │ │ ├── quantization_util.h │ │ ├── reference │ │ │ ├── add.h │ │ │ ├── add_n.h │ │ │ ├── arg_min_max.h │ │ │ ├── batch_matmul.h │ │ │ ├── batch_to_space_nd.h │ │ │ ├── binary_function.h │ │ │ ├── broadcast_args.h │ │ │ ├── broadcast_to.h │ │ │ ├── ceil.h │ │ │ ├── comparisons.cc │ │ │ ├── comparisons.h │ │ │ ├── concatenation.h │ │ │ ├── conv.h │ │ │ ├── cumsum.h │ │ │ ├── depth_to_space.h │ │ │ ├── depthwiseconv_float.h │ │ │ ├── depthwiseconv_uint8.h │ │ │ ├── dequantize.h │ │ │ ├── div.h │ │ │ ├── elu.h │ │ │ ├── exp.h │ │ │ ├── fill.h │ │ │ ├── floor.h │ │ │ ├── floor_div.h │ │ │ ├── floor_mod.h │ │ │ ├── fully_connected.h │ │ │ ├── hard_swish.h │ │ │ ├── integer_ops │ │ │ │ ├── add.h │ │ │ │ ├── conv.h │ │ │ │ ├── depthwise_conv.h │ │ │ │ ├── fully_connected.h │ │ │ │ ├── l2normalization.h │ │ │ │ ├── logistic.h │ │ │ │ ├── mean.h │ │ │ │ ├── mul.h │ │ │ │ ├── pooling.h │ │ │ │ ├── tanh.h │ │ │ │ └── transpose_conv.h │ │ │ ├── l2normalization.h │ │ │ ├── leaky_relu.h │ │ │ ├── log_softmax.h │ │ │ ├── logistic.h │ │ │ ├── lstm_cell.h │ │ │ ├── maximum_minimum.h │ │ │ ├── mul.h │ │ │ ├── neg.h │ │ │ ├── pad.h │ │ │ ├── pooling.h │ │ │ ├── portable_tensor_utils.cc │ │ │ ├── portable_tensor_utils.h │ │ │ ├── portable_tensor_utils_impl.h │ │ │ ├── prelu.h │ │ │ ├── process_broadcast_shapes.h │ │ │ ├── quantize.h │ │ │ ├── reduce.h │ │ │ ├── requantize.h │ │ │ ├── resize_bilinear.h │ │ │ ├── resize_nearest_neighbor.h │ │ │ ├── round.h │ │ │ ├── select.h │ │ │ ├── slice.h │ │ │ ├── softmax.h │ │ │ ├── space_to_batch_nd.h │ │ │ ├── space_to_depth.h │ │ │ ├── strided_slice.h │ │ │ ├── sub.h │ │ │ ├── tanh.h │ │ │ ├── transpose.h │ │ │ └── transpose_conv.h │ │ ├── runtime_shape.h │ │ ├── strided_slice_logic.h │ │ ├── tensor_ctypes.cc │ │ ├── tensor_ctypes.h │ │ ├── tensor_utils.cc │ │ └── types.h │ ├── kernel_util.cc │ ├── kernel_util.h │ ├── op_macros.h │ └── padding.h │ ├── micro │ ├── arena_allocator │ │ ├── ibuffer_allocator.h │ │ ├── non_persistent_arena_buffer_allocator.cc │ │ ├── non_persistent_arena_buffer_allocator.h │ │ ├── persistent_arena_buffer_allocator.cc │ │ ├── persistent_arena_buffer_allocator.h │ │ ├── recording_single_arena_buffer_allocator.cc │ │ ├── recording_single_arena_buffer_allocator.h │ │ ├── single_arena_buffer_allocator.cc │ │ └── single_arena_buffer_allocator.h │ ├── compatibility.h │ ├── debug_log.cc │ ├── debug_log.h │ ├── fake_micro_context.cc │ ├── fake_micro_context.h │ ├── flatbuffer_utils.cc │ ├── flatbuffer_utils.h │ ├── kernels │ │ ├── activation_utils.h │ │ ├── activations.cc │ │ ├── activations.h │ │ ├── activations_common.cc │ │ ├── add.cc │ │ ├── add.h │ │ ├── add_common.cc │ │ ├── add_n.cc │ │ ├── arg_min_max.cc │ │ ├── assign_variable.cc │ │ ├── batch_matmul.cc │ │ ├── batch_to_space_nd.cc │ │ ├── broadcast_args.cc │ │ ├── broadcast_to.cc │ │ ├── call_once.cc │ │ ├── cast.cc │ │ ├── ceil.cc │ │ ├── circular_buffer.cc │ │ ├── circular_buffer.h │ │ ├── circular_buffer_common.cc │ │ ├── circular_buffer_flexbuffers_generated_data.h │ │ ├── comparisons.cc │ │ ├── concatenation.cc │ │ ├── conv.cc │ │ ├── conv.h │ │ ├── conv_common.cc │ │ ├── conv_test.h │ │ ├── cumsum.cc │ │ ├── depth_to_space.cc │ │ ├── depthwise_conv.cc │ │ ├── depthwise_conv.h │ │ ├── depthwise_conv_common.cc │ │ ├── dequantize.cc │ │ ├── dequantize.h │ │ ├── dequantize_common.cc │ │ ├── detection_postprocess.cc │ │ ├── detection_postprocess_flexbuffers_generated_data.h │ │ ├── div.cc │ │ ├── elementwise.cc │ │ ├── elu.cc │ │ ├── embedding_lookup.cc │ │ ├── esp_nn │ │ │ ├── README.md │ │ │ ├── add.cc │ │ │ ├── conv.cc │ │ │ ├── depthwise_conv.cc │ │ │ ├── fully_connected.cc │ │ │ ├── mul.cc │ │ │ ├── pooling.cc │ │ │ └── softmax.cc │ │ ├── ethosu.cc │ │ ├── ethosu.h │ │ ├── exp.cc │ │ ├── expand_dims.cc │ │ ├── fill.cc │ │ ├── floor.cc │ │ ├── floor_div.cc │ │ ├── floor_mod.cc │ │ ├── fully_connected.cc │ │ ├── fully_connected.h │ │ ├── fully_connected_common.cc │ │ ├── gather.cc │ │ ├── gather_nd.cc │ │ ├── hard_swish.cc │ │ ├── hard_swish.h │ │ ├── hard_swish_common.cc │ │ ├── if.cc │ │ ├── kernel_runner.cc │ │ ├── kernel_runner.h │ │ ├── kernel_util.cc │ │ ├── kernel_util.h │ │ ├── l2_pool_2d.cc │ │ ├── l2norm.cc │ │ ├── leaky_relu.cc │ │ ├── leaky_relu.h │ │ ├── leaky_relu_common.cc │ │ ├── log_softmax.cc │ │ ├── logical.cc │ │ ├── logical.h │ │ ├── logical_common.cc │ │ ├── logistic.cc │ │ ├── logistic.h │ │ ├── logistic_common.cc │ │ ├── lstm_eval.cc │ │ ├── lstm_eval.h │ │ ├── lstm_eval_common.cc │ │ ├── lstm_eval_test.h │ │ ├── lstm_shared.h │ │ ├── maximum_minimum.cc │ │ ├── micro_ops.h │ │ ├── micro_tensor_utils.cc │ │ ├── micro_tensor_utils.h │ │ ├── mirror_pad.cc │ │ ├── mul.cc │ │ ├── mul.h │ │ ├── mul_common.cc │ │ ├── neg.cc │ │ ├── pack.cc │ │ ├── pad.cc │ │ ├── pad.h │ │ ├── pooling.cc │ │ ├── pooling.h │ │ ├── pooling_common.cc │ │ ├── prelu.cc │ │ ├── prelu.h │ │ ├── prelu_common.cc │ │ ├── quantize.cc │ │ ├── quantize.h │ │ ├── quantize_common.cc │ │ ├── read_variable.cc │ │ ├── reduce.cc │ │ ├── reduce.h │ │ ├── reduce_common.cc │ │ ├── reshape.cc │ │ ├── reshape.h │ │ ├── reshape_common.cc │ │ ├── resize_bilinear.cc │ │ ├── resize_nearest_neighbor.cc │ │ ├── round.cc │ │ ├── select.cc │ │ ├── shape.cc │ │ ├── slice.cc │ │ ├── softmax.cc │ │ ├── softmax.h │ │ ├── softmax_common.cc │ │ ├── space_to_batch_nd.cc │ │ ├── space_to_depth.cc │ │ ├── split.cc │ │ ├── split_v.cc │ │ ├── squared_difference.cc │ │ ├── squeeze.cc │ │ ├── strided_slice.cc │ │ ├── strided_slice.h │ │ ├── strided_slice_common.cc │ │ ├── sub.cc │ │ ├── sub.h │ │ ├── sub_common.cc │ │ ├── svdf.cc │ │ ├── svdf.h │ │ ├── svdf_common.cc │ │ ├── tanh.cc │ │ ├── transpose.cc │ │ ├── transpose_conv.cc │ │ ├── transpose_conv.h │ │ ├── unidirectional_sequence_lstm.cc │ │ ├── unidirectional_sequence_lstm.h │ │ ├── unpack.cc │ │ ├── var_handle.cc │ │ ├── while.cc │ │ └── zeros_like.cc │ ├── memory_helpers.cc │ ├── memory_helpers.h │ ├── memory_planner │ │ ├── greedy_memory_planner.cc │ │ ├── greedy_memory_planner.h │ │ ├── linear_memory_planner.cc │ │ ├── linear_memory_planner.h │ │ ├── memory_plan_struct.h │ │ ├── micro_memory_planner.h │ │ ├── non_persistent_buffer_planner_shim.cc │ │ └── non_persistent_buffer_planner_shim.h │ ├── micro_allocation_info.cc │ ├── micro_allocation_info.h │ ├── micro_allocator.cc │ ├── micro_allocator.h │ ├── micro_arena_constants.h │ ├── micro_common.h │ ├── micro_context.cc │ ├── micro_context.h │ ├── micro_graph.h │ ├── micro_interpreter.cc │ ├── micro_interpreter.h │ ├── micro_interpreter_context.cc │ ├── micro_interpreter_context.h │ ├── micro_interpreter_graph.cc │ ├── micro_interpreter_graph.h │ ├── micro_log.cc │ ├── micro_log.h │ ├── micro_mutable_op_resolver.h │ ├── micro_op_resolver.cc │ ├── micro_op_resolver.h │ ├── micro_profiler.cc │ ├── micro_profiler.h │ ├── micro_profiler_interface.h │ ├── micro_resource_variable.cc │ ├── micro_resource_variable.h │ ├── micro_time.cc │ ├── micro_time.h │ ├── micro_utils.cc │ ├── micro_utils.h │ ├── mock_micro_graph.cc │ ├── mock_micro_graph.h │ ├── recording_micro_allocator.cc │ ├── recording_micro_allocator.h │ ├── recording_micro_interpreter.h │ ├── system_setup.cc │ ├── system_setup.h │ ├── test_helper_custom_ops.cc │ ├── test_helper_custom_ops.h │ ├── test_helpers.cc │ ├── test_helpers.h │ ├── testing │ │ └── micro_test.h │ └── tflite_bridge │ │ ├── flatbuffer_conversions_bridge.cc │ │ ├── flatbuffer_conversions_bridge.h │ │ ├── micro_error_reporter.cc │ │ └── micro_error_reporter.h │ ├── portable_type_to_tflitetype.h │ └── schema │ ├── schema_generated.h │ ├── schema_utils.cc │ └── schema_utils.h └── third_party ├── flatbuffers ├── LICENSE └── include │ └── flatbuffers │ ├── allocator.h │ ├── array.h │ ├── base.h │ ├── buffer.h │ ├── buffer_ref.h │ ├── code_generator.h │ ├── code_generators.h │ ├── default_allocator.h │ ├── detached_buffer.h │ ├── file_manager.h │ ├── flatbuffer_builder.h │ ├── flatbuffers.h │ ├── flex_flat_util.h │ ├── flexbuffers.h │ ├── grpc.h │ ├── hash.h │ ├── idl.h │ ├── minireflect.h │ ├── reflection.h │ ├── reflection_generated.h │ ├── registry.h │ ├── stl_emulation.h │ ├── string.h │ ├── struct.h │ ├── table.h │ ├── util.h │ ├── vector.h │ ├── vector_downward.h │ └── verifier.h ├── gemmlowp ├── LICENSE ├── fixedpoint │ ├── fixedpoint.h │ ├── fixedpoint_neon.h │ └── fixedpoint_sse.h └── internal │ └── detect_platform.h ├── kissfft ├── COPYING ├── _kiss_fft_guts.h ├── kiss_fft.c ├── kiss_fft.h └── tools │ ├── kiss_fftr.c │ └── kiss_fftr.h └── ruy └── ruy └── profiler └── instrumentation.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/README.md -------------------------------------------------------------------------------- /application/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/CMakeLists.txt -------------------------------------------------------------------------------- /application/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/LICENSE -------------------------------------------------------------------------------- /application/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/Makefile -------------------------------------------------------------------------------- /application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/README.md -------------------------------------------------------------------------------- /application/formatter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/formatter.sh -------------------------------------------------------------------------------- /application/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/CMakeLists.txt -------------------------------------------------------------------------------- /application/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/Kconfig.projbuild -------------------------------------------------------------------------------- /application/main/app_camera_esp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/app_camera_esp.cc -------------------------------------------------------------------------------- /application/main/app_camera_esp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/app_camera_esp.h -------------------------------------------------------------------------------- /application/main/ble_service.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/ble_service.cc -------------------------------------------------------------------------------- /application/main/ble_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/ble_service.h -------------------------------------------------------------------------------- /application/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/idf_component.yml -------------------------------------------------------------------------------- /application/main/image_provider.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/image_provider.cc -------------------------------------------------------------------------------- /application/main/image_provider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/image_provider.h -------------------------------------------------------------------------------- /application/main/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/main.cc -------------------------------------------------------------------------------- /application/main/main_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/main_functions.cc -------------------------------------------------------------------------------- /application/main/main_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/main_functions.h -------------------------------------------------------------------------------- /application/main/model.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/model.cc -------------------------------------------------------------------------------- /application/main/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/model.h -------------------------------------------------------------------------------- /application/main/model_settings.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/model_settings.cc -------------------------------------------------------------------------------- /application/main/model_settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/model_settings.h -------------------------------------------------------------------------------- /application/main/model_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/model_utils.cc -------------------------------------------------------------------------------- /application/main/model_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/main/model_utils.h -------------------------------------------------------------------------------- /application/partitions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/partitions.csv -------------------------------------------------------------------------------- /application/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/sdkconfig.defaults -------------------------------------------------------------------------------- /application/static_images/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/CMakeLists.txt -------------------------------------------------------------------------------- /application/static_images/sample_images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/README.md -------------------------------------------------------------------------------- /application/static_images/sample_images/image0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/image0 -------------------------------------------------------------------------------- /application/static_images/sample_images/image1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/image1 -------------------------------------------------------------------------------- /application/static_images/sample_images/image2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/image2 -------------------------------------------------------------------------------- /application/static_images/sample_images/image3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/image3 -------------------------------------------------------------------------------- /application/static_images/sample_images/image4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/image4 -------------------------------------------------------------------------------- /application/static_images/sample_images/image5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/image5 -------------------------------------------------------------------------------- /application/static_images/sample_images/image6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/image6 -------------------------------------------------------------------------------- /application/static_images/sample_images/image7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/image7 -------------------------------------------------------------------------------- /application/static_images/sample_images/image8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/image8 -------------------------------------------------------------------------------- /application/static_images/sample_images/image9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/static_images/sample_images/image9 -------------------------------------------------------------------------------- /application/unit_tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/unit_tests/CMakeLists.txt -------------------------------------------------------------------------------- /application/unit_tests/app_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/unit_tests/app_main.cc -------------------------------------------------------------------------------- /application/unit_tests/test_model_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/unit_tests/test_model_utils.cc -------------------------------------------------------------------------------- /application/unit_tests/test_model_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/application/unit_tests/test_model_utils.h -------------------------------------------------------------------------------- /data_collector/datasets/convert_model_to_tflite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/convert_model_to_tflite.py -------------------------------------------------------------------------------- /data_collector/datasets/images/test/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/test/003.png -------------------------------------------------------------------------------- /data_collector/datasets/images/test/079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/test/079.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/000.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/002.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/004.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/005.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/006.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/007.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/008.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/009.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/010.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/012.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/013.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/014.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/015.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/016.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/017.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/018.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/019.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/020.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/021.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/022.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/023.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/024.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/025.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/026.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/029.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/030.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/031.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/033.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/034.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/036.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/038.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/039.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/040.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/041.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/042.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/043.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/045.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/046.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/047.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/048.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/049.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/050.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/055.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/057.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/059.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/060.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/061.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/065.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/067.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/068.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/069.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/070.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/071.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/072.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/073.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/074.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/075.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/077.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/078.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/080.png -------------------------------------------------------------------------------- /data_collector/datasets/images/train/081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/train/081.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/011.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/027.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/028.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/032.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/035.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/037.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/044.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/056.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/058.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/062.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/063.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/064.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/066.png -------------------------------------------------------------------------------- /data_collector/datasets/images/val/076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/images/val/076.png -------------------------------------------------------------------------------- /data_collector/datasets/labels/test/003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/test/003.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/test/079.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/test/079.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/000.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/002.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/004.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/005.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/006.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/007.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/008.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/009.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/010.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/012.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/013.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/014.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/015.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/016.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/017.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/018.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/019.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/020.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/021.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/022.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/023.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/024.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/025.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/026.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/029.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/030.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/031.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/031.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/033.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/033.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/034.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/034.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/036.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/036.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/038.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/038.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/039.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/039.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/040.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/040.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/041.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/041.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/042.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/042.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/043.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/043.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/045.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/045.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/046.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/046.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/047.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/047.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/048.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/048.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/049.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/049.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/050.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/055.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/055.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/057.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/057.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/059.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/059.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/060.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/060.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/061.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/061.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/065.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/065.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/067.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/067.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/068.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/068.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/069.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/069.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/070.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/070.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/071.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/071.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/072.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/072.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/073.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/073.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/074.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/074.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/075.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/075.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/077.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/077.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/078.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/078.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/080.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/080.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/train/081.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/train/081.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/011.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/027.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/028.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/028.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/032.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/032.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/035.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/035.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/037.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/037.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/044.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/044.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/056.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/056.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/058.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/058.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/062.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/062.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/063.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/063.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/064.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/064.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/066.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/066.txt -------------------------------------------------------------------------------- /data_collector/datasets/labels/val/076.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/labels/val/076.txt -------------------------------------------------------------------------------- /data_collector/datasets/show_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/show_samples.py -------------------------------------------------------------------------------- /data_collector/datasets/split_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/split_dataset.py -------------------------------------------------------------------------------- /data_collector/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/datasets/utils.py -------------------------------------------------------------------------------- /data_collector/esp32/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/CMakeLists.txt -------------------------------------------------------------------------------- /data_collector/esp32/main/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/main/CMakeLists.txt -------------------------------------------------------------------------------- /data_collector/esp32/main/Kconfig.projbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/main/Kconfig.projbuild -------------------------------------------------------------------------------- /data_collector/esp32/main/idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/main/idf_component.yml -------------------------------------------------------------------------------- /data_collector/esp32/main/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/main/main.cc -------------------------------------------------------------------------------- /data_collector/esp32/main/stream_server.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/main/stream_server.cc -------------------------------------------------------------------------------- /data_collector/esp32/main/stream_server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/main/stream_server.h -------------------------------------------------------------------------------- /data_collector/esp32/main/take_picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/main/take_picture.c -------------------------------------------------------------------------------- /data_collector/esp32/main/wifi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/main/wifi.cc -------------------------------------------------------------------------------- /data_collector/esp32/main/wifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/main/wifi.h -------------------------------------------------------------------------------- /data_collector/esp32/sdkconfig.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/esp32/sdkconfig.defaults -------------------------------------------------------------------------------- /data_collector/labels.txt: -------------------------------------------------------------------------------- 1 | 0 'black' 2 | 1 'small' 3 | 2 'big' 4 | -------------------------------------------------------------------------------- /data_collector/model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/model.yaml -------------------------------------------------------------------------------- /data_collector/model_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/model_data.yaml -------------------------------------------------------------------------------- /data_collector/webserver/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/capture.py -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/000.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/002.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/003.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/004.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/005.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/006.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/007.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/008.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/009.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/010.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/011.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/012.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/013.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/014.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/015.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/016.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/017.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/018.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/019.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/020.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/021.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/022.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/023.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/024.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/025.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/026.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/027.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/028.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/029.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/030.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/030.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/031.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/031.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/032.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/032.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/033.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/033.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/034.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/034.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/035.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/035.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/036.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/036.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/037.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/037.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/038.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/038.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/039.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/039.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/040.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/040.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/041.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/041.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/042.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/042.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/043.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/043.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/044.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/044.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/045.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/045.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/046.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/046.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/047.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/047.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/048.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/049.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/049.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/050.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/050.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/055.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/055.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/056.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/057.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/057.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/058.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/059.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/059.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/060.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/060.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/061.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/061.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/062.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/062.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/063.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/063.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/064.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/064.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/065.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/065.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/066.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/066.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/067.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/067.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/068.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/068.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/069.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/069.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/070.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/070.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/071.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/071.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/072.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/072.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/073.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/073.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/074.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/074.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/075.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/075.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/076.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/077.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/077.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/078.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/078.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/079.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/079.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/080.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/081.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/081.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/96X96_screws.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/96X96_screws.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/96x96.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/96x96.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/96x96_rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/96x96_rgb.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/96x96_rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/96x96_rgb.png -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/HQVGA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/HQVGA.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/HQVGA_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/HQVGA_10.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/HQVGA_screws.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/HQVGA_screws.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/QQVGA.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/QQVGA.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/QQVGA_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/QQVGA_01.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/QQVGA_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/QQVGA_02.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/QQVGA_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/QQVGA_03.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/QQVGA_screws.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/QQVGA_screws.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/QVGA_15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/QVGA_15.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/QVGA_30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/QVGA_30.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/QVGA_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/QVGA_5.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/QVGA_screws.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/QVGA_screws.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/QVGA_screws_30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/QVGA_screws_30.jpg -------------------------------------------------------------------------------- /data_collector/webserver/static/uploads/old/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/static/uploads/old/test.png -------------------------------------------------------------------------------- /data_collector/webserver/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/templates/index.html -------------------------------------------------------------------------------- /data_collector/webserver/uploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/uploader.py -------------------------------------------------------------------------------- /data_collector/webserver/webserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/data_collector/webserver/webserver.py -------------------------------------------------------------------------------- /idf_component.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/idf_component.yml -------------------------------------------------------------------------------- /readme_extras/labeling_makesense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/readme_extras/labeling_makesense.png -------------------------------------------------------------------------------- /scripts/build_examples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/scripts/build_examples.sh -------------------------------------------------------------------------------- /scripts/gh_sync_req.txt: -------------------------------------------------------------------------------- 1 | # Python requirements for sync_from_github 2 | image 3 | numpy 4 | -------------------------------------------------------------------------------- /scripts/sync_from_tflite_micro.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/scripts/sync_from_tflite_micro.sh -------------------------------------------------------------------------------- /signal/micro/kernels/delay.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/delay.cc -------------------------------------------------------------------------------- /signal/micro/kernels/delay_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/delay_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /signal/micro/kernels/energy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/energy.cc -------------------------------------------------------------------------------- /signal/micro/kernels/energy_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/energy_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /signal/micro/kernels/fft_auto_scale_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/fft_auto_scale_common.cc -------------------------------------------------------------------------------- /signal/micro/kernels/fft_auto_scale_kernel.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/fft_auto_scale_kernel.cc -------------------------------------------------------------------------------- /signal/micro/kernels/fft_auto_scale_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/fft_auto_scale_kernel.h -------------------------------------------------------------------------------- /signal/micro/kernels/fft_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/fft_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /signal/micro/kernels/filter_bank.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/filter_bank.cc -------------------------------------------------------------------------------- /signal/micro/kernels/filter_bank_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/filter_bank_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /signal/micro/kernels/filter_bank_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/filter_bank_log.cc -------------------------------------------------------------------------------- /signal/micro/kernels/filter_bank_log_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/filter_bank_log_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /signal/micro/kernels/filter_bank_spectral_subtraction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/filter_bank_spectral_subtraction.cc -------------------------------------------------------------------------------- /signal/micro/kernels/filter_bank_square_root.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/filter_bank_square_root.cc -------------------------------------------------------------------------------- /signal/micro/kernels/filter_bank_square_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/filter_bank_square_root.h -------------------------------------------------------------------------------- /signal/micro/kernels/filter_bank_square_root_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/filter_bank_square_root_common.cc -------------------------------------------------------------------------------- /signal/micro/kernels/framer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/framer.cc -------------------------------------------------------------------------------- /signal/micro/kernels/framer_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/framer_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /signal/micro/kernels/irfft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/irfft.cc -------------------------------------------------------------------------------- /signal/micro/kernels/irfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/irfft.h -------------------------------------------------------------------------------- /signal/micro/kernels/overlap_add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/overlap_add.cc -------------------------------------------------------------------------------- /signal/micro/kernels/overlap_add_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/overlap_add_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /signal/micro/kernels/pcan.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/pcan.cc -------------------------------------------------------------------------------- /signal/micro/kernels/pcan_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/pcan_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /signal/micro/kernels/rfft.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/rfft.cc -------------------------------------------------------------------------------- /signal/micro/kernels/rfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/rfft.h -------------------------------------------------------------------------------- /signal/micro/kernels/stacker.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/stacker.cc -------------------------------------------------------------------------------- /signal/micro/kernels/stacker_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/stacker_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /signal/micro/kernels/window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/window.cc -------------------------------------------------------------------------------- /signal/micro/kernels/window_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/micro/kernels/window_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /signal/src/circular_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/circular_buffer.cc -------------------------------------------------------------------------------- /signal/src/circular_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/circular_buffer.h -------------------------------------------------------------------------------- /signal/src/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/complex.h -------------------------------------------------------------------------------- /signal/src/energy.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/energy.cc -------------------------------------------------------------------------------- /signal/src/energy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/energy.h -------------------------------------------------------------------------------- /signal/src/fft_auto_scale.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/fft_auto_scale.cc -------------------------------------------------------------------------------- /signal/src/fft_auto_scale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/fft_auto_scale.h -------------------------------------------------------------------------------- /signal/src/filter_bank.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/filter_bank.cc -------------------------------------------------------------------------------- /signal/src/filter_bank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/filter_bank.h -------------------------------------------------------------------------------- /signal/src/filter_bank_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/filter_bank_log.cc -------------------------------------------------------------------------------- /signal/src/filter_bank_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/filter_bank_log.h -------------------------------------------------------------------------------- /signal/src/filter_bank_spectral_subtraction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/filter_bank_spectral_subtraction.cc -------------------------------------------------------------------------------- /signal/src/filter_bank_spectral_subtraction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/filter_bank_spectral_subtraction.h -------------------------------------------------------------------------------- /signal/src/filter_bank_square_root.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/filter_bank_square_root.cc -------------------------------------------------------------------------------- /signal/src/filter_bank_square_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/filter_bank_square_root.h -------------------------------------------------------------------------------- /signal/src/irfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/irfft.h -------------------------------------------------------------------------------- /signal/src/irfft_float.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/irfft_float.cc -------------------------------------------------------------------------------- /signal/src/irfft_int16.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/irfft_int16.cc -------------------------------------------------------------------------------- /signal/src/irfft_int32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/irfft_int32.cc -------------------------------------------------------------------------------- /signal/src/kiss_fft_wrappers/kiss_fft_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/kiss_fft_wrappers/kiss_fft_common.h -------------------------------------------------------------------------------- /signal/src/kiss_fft_wrappers/kiss_fft_float.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/kiss_fft_wrappers/kiss_fft_float.cc -------------------------------------------------------------------------------- /signal/src/kiss_fft_wrappers/kiss_fft_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/kiss_fft_wrappers/kiss_fft_float.h -------------------------------------------------------------------------------- /signal/src/kiss_fft_wrappers/kiss_fft_int16.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/kiss_fft_wrappers/kiss_fft_int16.cc -------------------------------------------------------------------------------- /signal/src/kiss_fft_wrappers/kiss_fft_int16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/kiss_fft_wrappers/kiss_fft_int16.h -------------------------------------------------------------------------------- /signal/src/kiss_fft_wrappers/kiss_fft_int32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/kiss_fft_wrappers/kiss_fft_int32.cc -------------------------------------------------------------------------------- /signal/src/kiss_fft_wrappers/kiss_fft_int32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/kiss_fft_wrappers/kiss_fft_int32.h -------------------------------------------------------------------------------- /signal/src/log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/log.cc -------------------------------------------------------------------------------- /signal/src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/log.h -------------------------------------------------------------------------------- /signal/src/max_abs.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/max_abs.cc -------------------------------------------------------------------------------- /signal/src/max_abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/max_abs.h -------------------------------------------------------------------------------- /signal/src/msb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/msb.h -------------------------------------------------------------------------------- /signal/src/msb_32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/msb_32.cc -------------------------------------------------------------------------------- /signal/src/msb_64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/msb_64.cc -------------------------------------------------------------------------------- /signal/src/overlap_add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/overlap_add.cc -------------------------------------------------------------------------------- /signal/src/overlap_add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/overlap_add.h -------------------------------------------------------------------------------- /signal/src/pcan_argc_fixed.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/pcan_argc_fixed.cc -------------------------------------------------------------------------------- /signal/src/pcan_argc_fixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/pcan_argc_fixed.h -------------------------------------------------------------------------------- /signal/src/rfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/rfft.h -------------------------------------------------------------------------------- /signal/src/rfft_float.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/rfft_float.cc -------------------------------------------------------------------------------- /signal/src/rfft_int16.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/rfft_int16.cc -------------------------------------------------------------------------------- /signal/src/rfft_int32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/rfft_int32.cc -------------------------------------------------------------------------------- /signal/src/square_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/square_root.h -------------------------------------------------------------------------------- /signal/src/square_root_32.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/square_root_32.cc -------------------------------------------------------------------------------- /signal/src/square_root_64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/square_root_64.cc -------------------------------------------------------------------------------- /signal/src/window.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/window.cc -------------------------------------------------------------------------------- /signal/src/window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/signal/src/window.h -------------------------------------------------------------------------------- /tensorflow/lite/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/builtin_op_data.h -------------------------------------------------------------------------------- /tensorflow/lite/builtin_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/builtin_ops.h -------------------------------------------------------------------------------- /tensorflow/lite/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/c/builtin_op_data.h -------------------------------------------------------------------------------- /tensorflow/lite/c/c_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/c/c_api_types.h -------------------------------------------------------------------------------- /tensorflow/lite/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/c/common.h -------------------------------------------------------------------------------- /tensorflow/lite/context_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/context_util.h -------------------------------------------------------------------------------- /tensorflow/lite/core/api/error_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/api/error_reporter.cc -------------------------------------------------------------------------------- /tensorflow/lite/core/api/error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/api/error_reporter.h -------------------------------------------------------------------------------- /tensorflow/lite/core/api/flatbuffer_conversions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/api/flatbuffer_conversions.cc -------------------------------------------------------------------------------- /tensorflow/lite/core/api/flatbuffer_conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/api/flatbuffer_conversions.h -------------------------------------------------------------------------------- /tensorflow/lite/core/api/tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/api/tensor_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/core/api/tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/api/tensor_utils.h -------------------------------------------------------------------------------- /tensorflow/lite/core/c/builtin_op_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/c/builtin_op_data.h -------------------------------------------------------------------------------- /tensorflow/lite/core/c/c_api_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/c/c_api_types.h -------------------------------------------------------------------------------- /tensorflow/lite/core/c/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/c/common.cc -------------------------------------------------------------------------------- /tensorflow/lite/core/c/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/c/common.h -------------------------------------------------------------------------------- /tensorflow/lite/core/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/core/macros.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/common.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/common.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/compatibility.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/cppmath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/cppmath.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/max.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/min.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/optimized/neon_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/optimized/neon_check.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/portable_tensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/portable_tensor.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/portable_tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/portable_tensor_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/portable_tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/portable_tensor_utils.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/quantization_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/quantization_util.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/quantization_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/quantization_util.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/add.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/add_n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/add_n.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/arg_min_max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/arg_min_max.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/batch_matmul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/batch_matmul.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/batch_to_space_nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/batch_to_space_nd.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/binary_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/binary_function.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/broadcast_args.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/broadcast_args.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/broadcast_to.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/broadcast_to.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/ceil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/ceil.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/comparisons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/comparisons.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/comparisons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/comparisons.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/concatenation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/concatenation.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/conv.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/cumsum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/cumsum.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/depth_to_space.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/depth_to_space.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/depthwiseconv_float.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/depthwiseconv_uint8.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/dequantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/dequantize.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/div.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/elu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/elu.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/exp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/exp.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/fill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/fill.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/floor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/floor.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/floor_div.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/floor_div.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/floor_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/floor_mod.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/fully_connected.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/hard_swish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/hard_swish.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/add.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/conv.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/depthwise_conv.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/fully_connected.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/l2normalization.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/logistic.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/mean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/mean.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/mul.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/pooling.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/tanh.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/integer_ops/transpose_conv.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/l2normalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/l2normalization.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/leaky_relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/leaky_relu.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/log_softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/log_softmax.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/logistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/logistic.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/lstm_cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/lstm_cell.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/maximum_minimum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/maximum_minimum.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/mul.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/neg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/neg.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/pad.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/pooling.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/portable_tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/portable_tensor_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/portable_tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/portable_tensor_utils.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/portable_tensor_utils_impl.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/prelu.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/process_broadcast_shapes.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/quantize.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/reduce.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/requantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/requantize.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/resize_bilinear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/resize_bilinear.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/resize_nearest_neighbor.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/round.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/round.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/select.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/slice.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/softmax.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/space_to_batch_nd.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/space_to_depth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/space_to_depth.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/strided_slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/strided_slice.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/sub.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/tanh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/tanh.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/transpose.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/reference/transpose_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/reference/transpose_conv.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/runtime_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/runtime_shape.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/strided_slice_logic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/strided_slice_logic.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/tensor_ctypes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/tensor_ctypes.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/tensor_ctypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/tensor_ctypes.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/tensor_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/internal/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/internal/types.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/kernel_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/kernel_util.cc -------------------------------------------------------------------------------- /tensorflow/lite/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/kernel_util.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/op_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/op_macros.h -------------------------------------------------------------------------------- /tensorflow/lite/kernels/padding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/kernels/padding.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/arena_allocator/ibuffer_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/arena_allocator/ibuffer_allocator.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/arena_allocator/non_persistent_arena_buffer_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/arena_allocator/non_persistent_arena_buffer_allocator.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/arena_allocator/non_persistent_arena_buffer_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/arena_allocator/non_persistent_arena_buffer_allocator.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/arena_allocator/persistent_arena_buffer_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/arena_allocator/persistent_arena_buffer_allocator.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/arena_allocator/persistent_arena_buffer_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/arena_allocator/persistent_arena_buffer_allocator.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/arena_allocator/recording_single_arena_buffer_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/arena_allocator/recording_single_arena_buffer_allocator.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/arena_allocator/single_arena_buffer_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/arena_allocator/single_arena_buffer_allocator.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/arena_allocator/single_arena_buffer_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/arena_allocator/single_arena_buffer_allocator.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/compatibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/compatibility.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/debug_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/debug_log.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/debug_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/debug_log.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/fake_micro_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/fake_micro_context.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/fake_micro_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/fake_micro_context.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/flatbuffer_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/flatbuffer_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/flatbuffer_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/flatbuffer_utils.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/activation_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/activation_utils.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/activations.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/activations.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/activations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/activations.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/activations_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/activations_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/add.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/add.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/add_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/add_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/add_n.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/add_n.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/arg_min_max.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/arg_min_max.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/assign_variable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/assign_variable.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/batch_matmul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/batch_matmul.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/batch_to_space_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/batch_to_space_nd.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/broadcast_args.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/broadcast_args.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/broadcast_to.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/broadcast_to.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/call_once.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/call_once.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/cast.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/cast.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/ceil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/ceil.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/circular_buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/circular_buffer.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/circular_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/circular_buffer.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/circular_buffer_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/circular_buffer_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/comparisons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/comparisons.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/concatenation.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/concatenation.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/conv.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/conv.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/conv_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/conv_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/conv_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/conv_test.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/cumsum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/cumsum.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/depth_to_space.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/depth_to_space.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/depthwise_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/depthwise_conv.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/depthwise_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/depthwise_conv.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/depthwise_conv_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/depthwise_conv_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/dequantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/dequantize.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/dequantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/dequantize.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/dequantize_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/dequantize_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/detection_postprocess.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/detection_postprocess.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/div.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/elementwise.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/elementwise.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/elu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/elu.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/embedding_lookup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/embedding_lookup.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/esp_nn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/esp_nn/README.md -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/esp_nn/add.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/esp_nn/add.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/esp_nn/conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/esp_nn/conv.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/esp_nn/depthwise_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/esp_nn/depthwise_conv.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/esp_nn/fully_connected.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/esp_nn/fully_connected.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/esp_nn/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/esp_nn/mul.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/esp_nn/pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/esp_nn/pooling.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/esp_nn/softmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/esp_nn/softmax.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/ethosu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/ethosu.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/ethosu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/ethosu.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/exp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/exp.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/expand_dims.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/expand_dims.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/fill.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/fill.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/floor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/floor.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/floor_div.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/floor_div.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/floor_mod.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/floor_mod.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/fully_connected.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/fully_connected.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/fully_connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/fully_connected.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/fully_connected_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/fully_connected_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/gather.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/gather.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/gather_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/gather_nd.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/hard_swish.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/hard_swish.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/hard_swish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/hard_swish.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/hard_swish_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/hard_swish_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/if.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/if.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/kernel_runner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/kernel_runner.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/kernel_runner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/kernel_runner.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/kernel_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/kernel_util.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/kernel_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/kernel_util.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/l2_pool_2d.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/l2_pool_2d.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/l2norm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/l2norm.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/leaky_relu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/leaky_relu.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/leaky_relu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/leaky_relu.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/leaky_relu_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/leaky_relu_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/log_softmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/log_softmax.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/logical.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/logical.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/logical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/logical.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/logical_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/logical_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/logistic.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/logistic.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/logistic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/logistic.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/logistic_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/logistic_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/lstm_eval.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/lstm_eval.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/lstm_eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/lstm_eval.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/lstm_eval_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/lstm_eval_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/lstm_eval_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/lstm_eval_test.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/lstm_shared.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/lstm_shared.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/maximum_minimum.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/maximum_minimum.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/micro_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/micro_ops.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/micro_tensor_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/micro_tensor_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/micro_tensor_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/micro_tensor_utils.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/mirror_pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/mirror_pad.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/mul.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/mul.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/mul.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/mul.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/mul_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/mul_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/neg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/neg.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/pack.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pad.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/pad.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/pad.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pooling.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/pooling.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pooling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/pooling.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/pooling_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/pooling_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/prelu.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/prelu.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/prelu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/prelu.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/prelu_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/prelu_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/quantize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/quantize.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/quantize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/quantize.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/quantize_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/quantize_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/read_variable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/read_variable.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/reduce.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/reduce.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/reduce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/reduce.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/reduce_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/reduce_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/reshape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/reshape.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/reshape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/reshape.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/reshape_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/reshape_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/resize_bilinear.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/resize_bilinear.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/resize_nearest_neighbor.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/resize_nearest_neighbor.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/round.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/round.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/select.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/select.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/shape.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/shape.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/slice.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/softmax.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/softmax.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/softmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/softmax.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/softmax_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/softmax_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/space_to_batch_nd.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/space_to_batch_nd.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/space_to_depth.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/space_to_depth.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/split.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/split.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/split_v.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/split_v.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/squared_difference.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/squared_difference.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/squeeze.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/squeeze.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/strided_slice.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/strided_slice.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/strided_slice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/strided_slice.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/strided_slice_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/strided_slice_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/sub.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/sub.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/sub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/sub.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/sub_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/sub_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/svdf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/svdf.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/svdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/svdf.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/svdf_common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/svdf_common.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/tanh.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/tanh.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/transpose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/transpose.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/transpose_conv.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/transpose_conv.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/transpose_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/transpose_conv.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/unidirectional_sequence_lstm.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/unpack.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/unpack.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/var_handle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/var_handle.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/while.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/while.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/kernels/zeros_like.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/kernels/zeros_like.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/memory_helpers.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/memory_helpers.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_planner/greedy_memory_planner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/memory_planner/greedy_memory_planner.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_planner/greedy_memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/memory_planner/greedy_memory_planner.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_planner/linear_memory_planner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/memory_planner/linear_memory_planner.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_planner/linear_memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/memory_planner/linear_memory_planner.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_planner/memory_plan_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/memory_planner/memory_plan_struct.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_planner/micro_memory_planner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/memory_planner/micro_memory_planner.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/memory_planner/non_persistent_buffer_planner_shim.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_allocation_info.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_allocation_info.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_allocation_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_allocation_info.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_allocator.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_allocator.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_arena_constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_arena_constants.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_common.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_context.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_context.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_graph.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_interpreter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_interpreter.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_interpreter.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_interpreter_context.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_interpreter_context.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_interpreter_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_interpreter_context.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_interpreter_graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_interpreter_graph.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_interpreter_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_interpreter_graph.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_log.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_log.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_log.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_mutable_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_mutable_op_resolver.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_op_resolver.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_op_resolver.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_op_resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_op_resolver.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_profiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_profiler.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_profiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_profiler.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_profiler_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_profiler_interface.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_resource_variable.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_resource_variable.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_resource_variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_resource_variable.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_time.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_time.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_time.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/micro_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/micro_utils.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/mock_micro_graph.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/mock_micro_graph.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/mock_micro_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/mock_micro_graph.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/recording_micro_allocator.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/recording_micro_allocator.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/recording_micro_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/recording_micro_allocator.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/recording_micro_interpreter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/recording_micro_interpreter.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/system_setup.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/system_setup.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/system_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/system_setup.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/test_helper_custom_ops.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/test_helper_custom_ops.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/test_helper_custom_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/test_helper_custom_ops.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/test_helpers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/test_helpers.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/test_helpers.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/testing/micro_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/testing/micro_test.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/tflite_bridge/flatbuffer_conversions_bridge.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/tflite_bridge/flatbuffer_conversions_bridge.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/tflite_bridge/flatbuffer_conversions_bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/tflite_bridge/flatbuffer_conversions_bridge.h -------------------------------------------------------------------------------- /tensorflow/lite/micro/tflite_bridge/micro_error_reporter.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/tflite_bridge/micro_error_reporter.cc -------------------------------------------------------------------------------- /tensorflow/lite/micro/tflite_bridge/micro_error_reporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/micro/tflite_bridge/micro_error_reporter.h -------------------------------------------------------------------------------- /tensorflow/lite/portable_type_to_tflitetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/portable_type_to_tflitetype.h -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/schema/schema_generated.h -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_utils.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/schema/schema_utils.cc -------------------------------------------------------------------------------- /tensorflow/lite/schema/schema_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/tensorflow/lite/schema/schema_utils.h -------------------------------------------------------------------------------- /third_party/flatbuffers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/LICENSE -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/allocator.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/array.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/base.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/buffer.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/buffer_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/buffer_ref.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/code_generator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/code_generator.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/code_generators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/code_generators.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/default_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/default_allocator.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/detached_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/detached_buffer.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/file_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/file_manager.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/flatbuffer_builder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/flatbuffer_builder.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/flatbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/flatbuffers.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/flex_flat_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/flex_flat_util.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/flexbuffers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/flexbuffers.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/grpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/grpc.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/hash.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/idl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/idl.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/minireflect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/minireflect.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/reflection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/reflection.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/reflection_generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/reflection_generated.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/registry.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/stl_emulation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/stl_emulation.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/string.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/struct.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/table.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/util.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/vector.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/vector_downward.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/vector_downward.h -------------------------------------------------------------------------------- /third_party/flatbuffers/include/flatbuffers/verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/flatbuffers/include/flatbuffers/verifier.h -------------------------------------------------------------------------------- /third_party/gemmlowp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/gemmlowp/LICENSE -------------------------------------------------------------------------------- /third_party/gemmlowp/fixedpoint/fixedpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/gemmlowp/fixedpoint/fixedpoint.h -------------------------------------------------------------------------------- /third_party/gemmlowp/fixedpoint/fixedpoint_neon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/gemmlowp/fixedpoint/fixedpoint_neon.h -------------------------------------------------------------------------------- /third_party/gemmlowp/fixedpoint/fixedpoint_sse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/gemmlowp/fixedpoint/fixedpoint_sse.h -------------------------------------------------------------------------------- /third_party/gemmlowp/internal/detect_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/gemmlowp/internal/detect_platform.h -------------------------------------------------------------------------------- /third_party/kissfft/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/kissfft/COPYING -------------------------------------------------------------------------------- /third_party/kissfft/_kiss_fft_guts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/kissfft/_kiss_fft_guts.h -------------------------------------------------------------------------------- /third_party/kissfft/kiss_fft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/kissfft/kiss_fft.c -------------------------------------------------------------------------------- /third_party/kissfft/kiss_fft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/kissfft/kiss_fft.h -------------------------------------------------------------------------------- /third_party/kissfft/tools/kiss_fftr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/kissfft/tools/kiss_fftr.c -------------------------------------------------------------------------------- /third_party/kissfft/tools/kiss_fftr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/kissfft/tools/kiss_fftr.h -------------------------------------------------------------------------------- /third_party/ruy/ruy/profiler/instrumentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/daleonpz/cv_yolo_on_esp32/HEAD/third_party/ruy/ruy/profiler/instrumentation.h --------------------------------------------------------------------------------