diff --git a/README.md b/README.md index 7ced98bf942edfeeb3b0edcb55745981f1bfa10a..5baed59b76a950f59b3551b0701cd356053fee40 100644 --- a/README.md +++ b/README.md @@ -126,21 +126,21 @@ OpenCV 是一个开源的计算机视觉库,它提供了一组功能强大的 OCR(Optical Character Recognition,光学字符识别)是一种将图像中的文字(印刷体或手写体)转换为可编辑文本的技术。 -* [凌智视觉模块 OCR 文字识别](./Cpp_example/D05_ocr_text_recognition/README.md) -* [凌智视觉模块 OCR 文字检测](./Cpp_example/D06_ocr_text_detection/README.md) -* [凌智视觉模块 OCR 综合示例](./Cpp_example/D07_ocr_synthesis/README.md) +* [凌智视觉模块 OCR 文字识别](cpp_example/D05_ocr_text_recognition/README.md) +* [凌智视觉模块 OCR 文字检测](cpp_example/D06_ocr_text_detection/README.md) +* [凌智视觉模块 OCR 综合示例](cpp_example/D07_ocr_synthesis/README.md) ### 👍 图像分割案例 图像分割是计算机视觉中的关键技术,通过像素级分类将图像划分为多个区域或对象,广泛应用于医学影像、自动驾驶等领域,助力智能分析与场景理解。 -* [凌智视觉模块图像分割](./Cpp_example/D08_pp_humanseg/README.md) +* [凌智视觉模块图像分割](cpp_example/D08_pp_humanseg/README.md) ### 👍 车牌识别案例 车牌识别基于计算机视觉技术,通过图像处理和深度学习精准定位并提取车牌字符,应用于交通管理、停车场收费及安防系统,提升车辆识别效率与自动化水平。 -* [凌智视觉模块车牌识别](./Cpp_example/D09_plate_recognize/README.md) +* [凌智视觉模块车牌识别](cpp_example/D09_plate_recognize/README.md) ## 🏀 C++ 开发案例 C++ 开发案例以A、B、C、D进行不同类别进行分类,方便初学者进行使用和二次开发。 @@ -153,30 +153,30 @@ C++ 开发案例以A、B、C、D进行不同类别进行分类,方便初学者 | 编号 | 类别 | 例程名 | 说明 | | ---- | ------------- | ------------------------------- | ------------------------------------------- | -| A01 | 基础外设类 | Capture | [图像采集例程](./Cpp_example/A01_capture/README.md) | -| A02 | 基础外设类 | GPIO | [GPIO 控制例程](./Cpp_example/A02_GPIO/README.md) | -| A03 | 基础外设类 | PWM | [PWM 信号控制例程](./Cpp_example/A03_PWM/README.md) | -| A04 | 基础外设类 | ADC | [ADC 传感器数据采集例程](./Cpp_example/A04_ADC/README.md) | -| A05 | 基础外设类 | USART | [串口通信例程](./Cpp_example/A05_USART/README.md) | -| B01 | OpenCV基础类 | Basic Method | [OpenCV 基础操作](./Cpp_example/B01_basic_method/README.md) | -| B02 | OpenCV基础类 | Image Information Statistics | [图像信息统计](./Cpp_example/B02_Image_information_statistics/README.md) | -| B03 | OpenCV基础类 | Draw | [绘制图形示例](./Cpp_example/B03_Draw/README.md) | -| C01 | 传统识别类 | Find Blobs | [Blob 检测](./Cpp_example/C01_find_blobs/README.md) | -| C02 | 传统识别类 | Template Matching | [单模板匹配](./Cpp_example/C02_TemplateMatching/README.md) | -| C03 | 传统识别类 | Template Matching More | [多模板匹配](./Cpp_example/C03_Template_Matching_more/README.md) | -| C04 | 传统识别类 | Find Contours | [轮廓查找](./Cpp_example/C04_find_contours/README.md) | -| C05 | 传统识别类 | Fine Color and Shape | [颜色与形状定位](./Cpp_example/C05_Finecolorandshape/README.md) | -| C06 | 传统识别类 | QR Code Detector | [二维码检测](./Cpp_example/C06_test_qr_code_detector/README.md) | -| C07 | 传统识别类 | Bar Code Detector | [条形码检测](./Cpp_example/C07_test_bar_codeDetector/README.md) | -| D01 | 神经网络类 | Test Detection | [目标检测模型](./Cpp_example/D01_test_detection/README.md) | -| D02 | 神经网络类 | Digit Hand Recognition | [手写数字识别](./Cpp_example/D02_DigitHandRecog/README.md) | -| D03 | 神经网络类 | Face Recognition System | [人脸识别系统](./Cpp_example/D03_face_recognition_system/README.md) | -| D04 | 神经网络类 | Distance | [距离检测](./Cpp_example/D04_distance/README.md) | -| D05 | 神经网络类 | OCR Text Recognition | [OCR文字识别](./Cpp_example/D05_ocr_text_recognition/README.md) | -| D06 | 神经网络类 | OCR Text Detection | [OCR文字检测](./Cpp_example/D06_ocr_text_detection/README.md) | -| D07 | 神经网络类 | OCR Synthesis | [OCR综合示例](./Cpp_example/D07_ocr_synthesis/README.md) | -| D08 | 神经网络类 | PPHumanSeg | [图像分割](./Cpp_example/D08_pp_humanseg/README.md) | -| D09 | 神经网络类 | Plate Recognition | [车牌识别](./Cpp_example/D09_plate_recognize/README.md) | +| A01 | 基础外设类 | Capture | [图像采集例程](cpp_example/A01_capture/README.md) | +| A02 | 基础外设类 | GPIO | [GPIO 控制例程](cpp_example/A02_GPIO/README.md) | +| A03 | 基础外设类 | PWM | [PWM 信号控制例程](cpp_example/A03_PWM/README.md) | +| A04 | 基础外设类 | ADC | [ADC 传感器数据采集例程](cpp_example/A04_ADC/README.md) | +| A05 | 基础外设类 | USART | [串口通信例程](cpp_example/A05_USART/README.md) | +| B01 | OpenCV基础类 | Basic Method | [OpenCV 基础操作](cpp_example/B01_basic_method/README.md) | +| B02 | OpenCV基础类 | Image Information Statistics | [图像信息统计](cpp_example/B02_Image_information_statistics/README.md) | +| B03 | OpenCV基础类 | Draw | [绘制图形示例](cpp_example/B03_Draw/README.md) | +| C01 | 传统识别类 | Find Blobs | [Blob 检测](cpp_example/C01_find_blobs/README.md) | +| C02 | 传统识别类 | Template Matching | [单模板匹配](cpp_example/C02_TemplateMatching/README.md) | +| C03 | 传统识别类 | Template Matching More | [多模板匹配](cpp_example/C03_Template_Matching_more/README.md) | +| C04 | 传统识别类 | Find Contours | [轮廓查找](cpp_example/C04_find_contours/README.md) | +| C05 | 传统识别类 | Fine Color and Shape | [颜色与形状定位](cpp_example/C05_Finecolorandshape/README.md) | +| C06 | 传统识别类 | QR Code Detector | [二维码检测](cpp_example/C06_test_qr_code_detector/README.md) | +| C07 | 传统识别类 | Bar Code Detector | [条形码检测](cpp_example/C07_test_bar_codeDetector/README.md) | +| D01 | 神经网络类 | Test Detection | [目标检测模型](cpp_example/D01_test_detection/README.md) | +| D02 | 神经网络类 | Digit Hand Recognition | [手写数字识别](cpp_example/D02_DigitHandRecog/README.md) | +| D03 | 神经网络类 | Face Recognition System | [人脸识别系统](cpp_example/D03_face_recognition_system/README.md) | +| D04 | 神经网络类 | Distance | [距离检测](cpp_example/D04_distance/README.md) | +| D05 | 神经网络类 | OCR Text Recognition | [OCR文字识别](cpp_example/D05_ocr_text_recognition/README.md) | +| D06 | 神经网络类 | OCR Text Detection | [OCR文字检测](cpp_example/D06_ocr_text_detection/README.md) | +| D07 | 神经网络类 | OCR Synthesis | [OCR综合示例](cpp_example/D07_ocr_synthesis/README.md) | +| D08 | 神经网络类 | PPHumanSeg | [图像分割](cpp_example/D08_pp_humanseg/README.md) | +| D09 | 神经网络类 | Plate Recognition | [车牌识别](cpp_example/D09_plate_recognize/README.md) | ## 🐛 Bug反馈 diff --git a/Cpp_example/A01_capture/CMakeLists.txt b/cpp_example/A01_capture/CMakeLists.txt similarity index 100% rename from Cpp_example/A01_capture/CMakeLists.txt rename to cpp_example/A01_capture/CMakeLists.txt diff --git a/Cpp_example/A01_capture/README.md b/cpp_example/A01_capture/README.md similarity index 95% rename from Cpp_example/A01_capture/README.md rename to cpp_example/A01_capture/README.md index 6a5098eebe612fa9ea3f1d79abf12e05e1377007..bce32e06dc5e13721f47faee0cbb0073d75780c0 100755 --- a/Cpp_example/A01_capture/README.md +++ b/cpp_example/A01_capture/README.md @@ -305,7 +305,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/A01_capture +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/A01_capture # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/A01_capture/images/1.png b/cpp_example/A01_capture/images/1.png similarity index 100% rename from Cpp_example/A01_capture/images/1.png rename to cpp_example/A01_capture/images/1.png diff --git a/Cpp_example/A01_capture/images/2.png b/cpp_example/A01_capture/images/2.png similarity index 100% rename from Cpp_example/A01_capture/images/2.png rename to cpp_example/A01_capture/images/2.png diff --git a/Cpp_example/A01_capture/images/image_1.png b/cpp_example/A01_capture/images/image_1.png similarity index 100% rename from Cpp_example/A01_capture/images/image_1.png rename to cpp_example/A01_capture/images/image_1.png diff --git a/Cpp_example/A01_capture/test_capture.cc b/cpp_example/A01_capture/test_capture.cc similarity index 100% rename from Cpp_example/A01_capture/test_capture.cc rename to cpp_example/A01_capture/test_capture.cc diff --git a/Cpp_example/A02_GPIO/CMakeLists.txt b/cpp_example/A02_GPIO/CMakeLists.txt similarity index 100% rename from Cpp_example/A02_GPIO/CMakeLists.txt rename to cpp_example/A02_GPIO/CMakeLists.txt diff --git a/Cpp_example/A02_GPIO/GPIO_Read.cc b/cpp_example/A02_GPIO/GPIO_Read.cc similarity index 100% rename from Cpp_example/A02_GPIO/GPIO_Read.cc rename to cpp_example/A02_GPIO/GPIO_Read.cc diff --git a/Cpp_example/A02_GPIO/GPIO_Write.cc b/cpp_example/A02_GPIO/GPIO_Write.cc similarity index 100% rename from Cpp_example/A02_GPIO/GPIO_Write.cc rename to cpp_example/A02_GPIO/GPIO_Write.cc diff --git a/Cpp_example/A02_GPIO/README.md b/cpp_example/A02_GPIO/README.md similarity index 96% rename from Cpp_example/A02_GPIO/README.md rename to cpp_example/A02_GPIO/README.md index dc7ec88f05e8d1d704e954333de2dc1fe0273c3c..3e0c74e26965d269c42b11ac153c5a03c85117a8 100755 --- a/Cpp_example/A02_GPIO/README.md +++ b/cpp_example/A02_GPIO/README.md @@ -269,7 +269,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/A02_GPIO +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/A02_GPIO # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/A02_GPIO/images/image_1.png b/cpp_example/A02_GPIO/images/image_1.png similarity index 100% rename from Cpp_example/A02_GPIO/images/image_1.png rename to cpp_example/A02_GPIO/images/image_1.png diff --git a/Cpp_example/A02_GPIO/images/image_2.png b/cpp_example/A02_GPIO/images/image_2.png similarity index 100% rename from Cpp_example/A02_GPIO/images/image_2.png rename to cpp_example/A02_GPIO/images/image_2.png diff --git a/Cpp_example/A02_GPIO/images/image_3.png b/cpp_example/A02_GPIO/images/image_3.png similarity index 100% rename from Cpp_example/A02_GPIO/images/image_3.png rename to cpp_example/A02_GPIO/images/image_3.png diff --git a/Cpp_example/A02_GPIO/images/image_4.png b/cpp_example/A02_GPIO/images/image_4.png similarity index 100% rename from Cpp_example/A02_GPIO/images/image_4.png rename to cpp_example/A02_GPIO/images/image_4.png diff --git a/Cpp_example/A02_GPIO/images/read.png b/cpp_example/A02_GPIO/images/read.png similarity index 100% rename from Cpp_example/A02_GPIO/images/read.png rename to cpp_example/A02_GPIO/images/read.png diff --git a/Cpp_example/A02_GPIO/images/write.png b/cpp_example/A02_GPIO/images/write.png similarity index 100% rename from Cpp_example/A02_GPIO/images/write.png rename to cpp_example/A02_GPIO/images/write.png diff --git a/Cpp_example/A03_PWM/CMakeLists.txt b/cpp_example/A03_PWM/CMakeLists.txt similarity index 100% rename from Cpp_example/A03_PWM/CMakeLists.txt rename to cpp_example/A03_PWM/CMakeLists.txt diff --git a/Cpp_example/A03_PWM/PWM.cc b/cpp_example/A03_PWM/PWM.cc similarity index 100% rename from Cpp_example/A03_PWM/PWM.cc rename to cpp_example/A03_PWM/PWM.cc diff --git a/Cpp_example/A03_PWM/README.md b/cpp_example/A03_PWM/README.md similarity index 95% rename from Cpp_example/A03_PWM/README.md rename to cpp_example/A03_PWM/README.md index 8650d3b93ff936a359568b57230ed9db16767c68..c892caf0e0e9ff185d1e83a975a99850d377ef1d 100755 --- a/Cpp_example/A03_PWM/README.md +++ b/cpp_example/A03_PWM/README.md @@ -155,7 +155,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/A03_PWM +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/A03_PWM # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/A03_PWM/images/images_1.png b/cpp_example/A03_PWM/images/images_1.png similarity index 100% rename from Cpp_example/A03_PWM/images/images_1.png rename to cpp_example/A03_PWM/images/images_1.png diff --git a/Cpp_example/A03_PWM/images/pwm.png b/cpp_example/A03_PWM/images/pwm.png similarity index 100% rename from Cpp_example/A03_PWM/images/pwm.png rename to cpp_example/A03_PWM/images/pwm.png diff --git a/Cpp_example/A04_ADC/ADC.cc b/cpp_example/A04_ADC/ADC.cc similarity index 100% rename from Cpp_example/A04_ADC/ADC.cc rename to cpp_example/A04_ADC/ADC.cc diff --git a/Cpp_example/A04_ADC/CMakeLists.txt b/cpp_example/A04_ADC/CMakeLists.txt similarity index 100% rename from Cpp_example/A04_ADC/CMakeLists.txt rename to cpp_example/A04_ADC/CMakeLists.txt diff --git a/Cpp_example/A04_ADC/README.md b/cpp_example/A04_ADC/README.md similarity index 95% rename from Cpp_example/A04_ADC/README.md rename to cpp_example/A04_ADC/README.md index 33215b8ee4e8e8454908004ed039fb99d51455fe..24a4b5465e7b705e0349924509f3868be90673f1 100755 --- a/Cpp_example/A04_ADC/README.md +++ b/cpp_example/A04_ADC/README.md @@ -115,7 +115,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/A01_adc +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/A01_adc # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/A04_ADC/images/ADC.png b/cpp_example/A04_ADC/images/ADC.png similarity index 100% rename from Cpp_example/A04_ADC/images/ADC.png rename to cpp_example/A04_ADC/images/ADC.png diff --git a/Cpp_example/A04_ADC/images/image_1.png b/cpp_example/A04_ADC/images/image_1.png similarity index 100% rename from Cpp_example/A04_ADC/images/image_1.png rename to cpp_example/A04_ADC/images/image_1.png diff --git a/Cpp_example/A04_ADC/images/image_2.png b/cpp_example/A04_ADC/images/image_2.png similarity index 100% rename from Cpp_example/A04_ADC/images/image_2.png rename to cpp_example/A04_ADC/images/image_2.png diff --git a/Cpp_example/A05_USART/CMakeLists.txt b/cpp_example/A05_USART/CMakeLists.txt similarity index 100% rename from Cpp_example/A05_USART/CMakeLists.txt rename to cpp_example/A05_USART/CMakeLists.txt diff --git a/Cpp_example/A05_USART/README.md b/cpp_example/A05_USART/README.md similarity index 95% rename from Cpp_example/A05_USART/README.md rename to cpp_example/A05_USART/README.md index 8900757b688d8e0ea54c08f3fb7598259bcce46c..59d3c73e23e36e441481af552f5f0f53135390e3 100755 --- a/Cpp_example/A05_USART/README.md +++ b/cpp_example/A05_USART/README.md @@ -208,7 +208,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/A05_USART +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/A05_USART # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/A05_USART/USART_Read.cc b/cpp_example/A05_USART/USART_Read.cc similarity index 100% rename from Cpp_example/A05_USART/USART_Read.cc rename to cpp_example/A05_USART/USART_Read.cc diff --git a/Cpp_example/A05_USART/USART_Write.cc b/cpp_example/A05_USART/USART_Write.cc similarity index 100% rename from Cpp_example/A05_USART/USART_Write.cc rename to cpp_example/A05_USART/USART_Write.cc diff --git a/Cpp_example/A05_USART/images/Read.png b/cpp_example/A05_USART/images/Read.png similarity index 100% rename from Cpp_example/A05_USART/images/Read.png rename to cpp_example/A05_USART/images/Read.png diff --git a/Cpp_example/A05_USART/images/Write.png b/cpp_example/A05_USART/images/Write.png similarity index 100% rename from Cpp_example/A05_USART/images/Write.png rename to cpp_example/A05_USART/images/Write.png diff --git a/Cpp_example/A05_USART/images/image_1.png b/cpp_example/A05_USART/images/image_1.png similarity index 100% rename from Cpp_example/A05_USART/images/image_1.png rename to cpp_example/A05_USART/images/image_1.png diff --git a/Cpp_example/A05_USART/images/image_2.png b/cpp_example/A05_USART/images/image_2.png similarity index 100% rename from Cpp_example/A05_USART/images/image_2.png rename to cpp_example/A05_USART/images/image_2.png diff --git a/Cpp_example/A05_USART/images/image_3.png b/cpp_example/A05_USART/images/image_3.png similarity index 100% rename from Cpp_example/A05_USART/images/image_3.png rename to cpp_example/A05_USART/images/image_3.png diff --git a/Cpp_example/B01_basic_method/CMakeLists.txt b/cpp_example/B01_basic_method/CMakeLists.txt similarity index 100% rename from Cpp_example/B01_basic_method/CMakeLists.txt rename to cpp_example/B01_basic_method/CMakeLists.txt diff --git a/Cpp_example/B01_basic_method/README.md b/cpp_example/B01_basic_method/README.md similarity index 95% rename from Cpp_example/B01_basic_method/README.md rename to cpp_example/B01_basic_method/README.md index f4b1fbd910fdea7a6bc12aee7eea953fb7a9a5d7..3c8737a3b92f02c87d7c945b96ec0c8b3cc01040 100755 --- a/Cpp_example/B01_basic_method/README.md +++ b/cpp_example/B01_basic_method/README.md @@ -285,7 +285,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/B01_basic_method +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/B01_basic_method # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/B01_basic_method/basic_method.cc b/cpp_example/B01_basic_method/basic_method.cc similarity index 100% rename from Cpp_example/B01_basic_method/basic_method.cc rename to cpp_example/B01_basic_method/basic_method.cc diff --git a/Cpp_example/B01_basic_method/images/2.png b/cpp_example/B01_basic_method/images/2.png similarity index 100% rename from Cpp_example/B01_basic_method/images/2.png rename to cpp_example/B01_basic_method/images/2.png diff --git a/Cpp_example/B01_basic_method/images/All.png b/cpp_example/B01_basic_method/images/All.png similarity index 100% rename from Cpp_example/B01_basic_method/images/All.png rename to cpp_example/B01_basic_method/images/All.png diff --git a/Cpp_example/B01_basic_method/images/Difference.png b/cpp_example/B01_basic_method/images/Difference.png similarity index 100% rename from Cpp_example/B01_basic_method/images/Difference.png rename to cpp_example/B01_basic_method/images/Difference.png diff --git a/Cpp_example/B01_basic_method/images/Inverted.png b/cpp_example/B01_basic_method/images/Inverted.png similarity index 100% rename from Cpp_example/B01_basic_method/images/Inverted.png rename to cpp_example/B01_basic_method/images/Inverted.png diff --git a/Cpp_example/B01_basic_method/images/Original.png b/cpp_example/B01_basic_method/images/Original.png similarity index 100% rename from Cpp_example/B01_basic_method/images/Original.png rename to cpp_example/B01_basic_method/images/Original.png diff --git a/Cpp_example/B02_Image_information_statistics/CMakeLists.txt b/cpp_example/B02_Image_information_statistics/CMakeLists.txt similarity index 100% rename from Cpp_example/B02_Image_information_statistics/CMakeLists.txt rename to cpp_example/B02_Image_information_statistics/CMakeLists.txt diff --git a/Cpp_example/B02_Image_information_statistics/Image_information_statistics.cc b/cpp_example/B02_Image_information_statistics/Image_information_statistics.cc similarity index 100% rename from Cpp_example/B02_Image_information_statistics/Image_information_statistics.cc rename to cpp_example/B02_Image_information_statistics/Image_information_statistics.cc diff --git a/Cpp_example/B02_Image_information_statistics/README.md b/cpp_example/B02_Image_information_statistics/README.md similarity index 96% rename from Cpp_example/B02_Image_information_statistics/README.md rename to cpp_example/B02_Image_information_statistics/README.md index aba6ccc1d0774cb5130f7fae6a77b2f06e8b03e2..c60e71c75de019d24b3d3e2b2d361c3903d87df2 100755 --- a/Cpp_example/B02_Image_information_statistics/README.md +++ b/cpp_example/B02_Image_information_statistics/README.md @@ -221,7 +221,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/B02_Image_information_statistics +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/B02_Image_information_statistics # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/B02_Image_information_statistics/example.jpg b/cpp_example/B02_Image_information_statistics/example.jpg similarity index 100% rename from Cpp_example/B02_Image_information_statistics/example.jpg rename to cpp_example/B02_Image_information_statistics/example.jpg diff --git a/Cpp_example/B02_Image_information_statistics/images/ALL.png b/cpp_example/B02_Image_information_statistics/images/ALL.png similarity index 100% rename from Cpp_example/B02_Image_information_statistics/images/ALL.png rename to cpp_example/B02_Image_information_statistics/images/ALL.png diff --git a/Cpp_example/B02_Image_information_statistics/images/images.png b/cpp_example/B02_Image_information_statistics/images/images.png similarity index 100% rename from Cpp_example/B02_Image_information_statistics/images/images.png rename to cpp_example/B02_Image_information_statistics/images/images.png diff --git a/Cpp_example/B03_Draw/CMakeLists.txt b/cpp_example/B03_Draw/CMakeLists.txt similarity index 100% rename from Cpp_example/B03_Draw/CMakeLists.txt rename to cpp_example/B03_Draw/CMakeLists.txt diff --git a/Cpp_example/B03_Draw/Draw.cc b/cpp_example/B03_Draw/Draw.cc similarity index 100% rename from Cpp_example/B03_Draw/Draw.cc rename to cpp_example/B03_Draw/Draw.cc diff --git a/Cpp_example/B03_Draw/README.md b/cpp_example/B03_Draw/README.md similarity index 96% rename from Cpp_example/B03_Draw/README.md rename to cpp_example/B03_Draw/README.md index 056442170c98109b6ac740766def7c4ab3839d34..56aa33b0b9eaf73804f1fb5af89724ec556d419f 100755 --- a/Cpp_example/B03_Draw/README.md +++ b/cpp_example/B03_Draw/README.md @@ -179,7 +179,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/B03_Draw +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/B03_Draw # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/B03_Draw/images/All.png b/cpp_example/B03_Draw/images/All.png similarity index 100% rename from Cpp_example/B03_Draw/images/All.png rename to cpp_example/B03_Draw/images/All.png diff --git a/Cpp_example/B03_Draw/images/Drawing.png b/cpp_example/B03_Draw/images/Drawing.png similarity index 100% rename from Cpp_example/B03_Draw/images/Drawing.png rename to cpp_example/B03_Draw/images/Drawing.png diff --git a/Cpp_example/C01_find_blobs/CMakeLists.txt b/cpp_example/C01_find_blobs/CMakeLists.txt similarity index 100% rename from Cpp_example/C01_find_blobs/CMakeLists.txt rename to cpp_example/C01_find_blobs/CMakeLists.txt diff --git a/Cpp_example/C01_find_blobs/README.md b/cpp_example/C01_find_blobs/README.md similarity index 96% rename from Cpp_example/C01_find_blobs/README.md rename to cpp_example/C01_find_blobs/README.md index df35f051c531cb74f50374a2e82f55283dcc8a25..8dbcaa43eb5910acd269a5c0eeef0bfbe7ddcf4c 100755 --- a/Cpp_example/C01_find_blobs/README.md +++ b/cpp_example/C01_find_blobs/README.md @@ -313,7 +313,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/C01_find_blobs +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/C01_find_blobs # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/C01_find_blobs/find_blobs.cc b/cpp_example/C01_find_blobs/find_blobs.cc similarity index 100% rename from Cpp_example/C01_find_blobs/find_blobs.cc rename to cpp_example/C01_find_blobs/find_blobs.cc diff --git a/Cpp_example/C01_find_blobs/images/1.png b/cpp_example/C01_find_blobs/images/1.png similarity index 100% rename from Cpp_example/C01_find_blobs/images/1.png rename to cpp_example/C01_find_blobs/images/1.png diff --git a/Cpp_example/C01_find_blobs/images/findblob.png b/cpp_example/C01_find_blobs/images/findblob.png similarity index 100% rename from Cpp_example/C01_find_blobs/images/findblob.png rename to cpp_example/C01_find_blobs/images/findblob.png diff --git a/Cpp_example/C02_TemplateMatching/CMakeLists.txt b/cpp_example/C02_TemplateMatching/CMakeLists.txt similarity index 100% rename from Cpp_example/C02_TemplateMatching/CMakeLists.txt rename to cpp_example/C02_TemplateMatching/CMakeLists.txt diff --git a/Cpp_example/C02_TemplateMatching/README.md b/cpp_example/C02_TemplateMatching/README.md similarity index 96% rename from Cpp_example/C02_TemplateMatching/README.md rename to cpp_example/C02_TemplateMatching/README.md index ed0758d7d3f4077a27a49b4f8c775e4e6de137ac..7b34d58cf3cabe5448893f3dcefe0b28234764c7 100755 --- a/Cpp_example/C02_TemplateMatching/README.md +++ b/cpp_example/C02_TemplateMatching/README.md @@ -275,7 +275,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/A01_capture +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/A01_capture # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/C02_TemplateMatching/TemplateMatching.cc b/cpp_example/C02_TemplateMatching/TemplateMatching.cc similarity index 100% rename from Cpp_example/C02_TemplateMatching/TemplateMatching.cc rename to cpp_example/C02_TemplateMatching/TemplateMatching.cc diff --git a/Cpp_example/C02_TemplateMatching/images/2025_0421_11_28_33_927.png b/cpp_example/C02_TemplateMatching/images/2025_0421_11_28_33_927.png similarity index 100% rename from Cpp_example/C02_TemplateMatching/images/2025_0421_11_28_33_927.png rename to cpp_example/C02_TemplateMatching/images/2025_0421_11_28_33_927.png diff --git a/Cpp_example/C02_TemplateMatching/images/All.png b/cpp_example/C02_TemplateMatching/images/All.png similarity index 100% rename from Cpp_example/C02_TemplateMatching/images/All.png rename to cpp_example/C02_TemplateMatching/images/All.png diff --git a/Cpp_example/C02_TemplateMatching/images/template_0.png b/cpp_example/C02_TemplateMatching/images/template_0.png similarity index 100% rename from Cpp_example/C02_TemplateMatching/images/template_0.png rename to cpp_example/C02_TemplateMatching/images/template_0.png diff --git a/Cpp_example/C02_TemplateMatching/images/template_1.png b/cpp_example/C02_TemplateMatching/images/template_1.png similarity index 100% rename from Cpp_example/C02_TemplateMatching/images/template_1.png rename to cpp_example/C02_TemplateMatching/images/template_1.png diff --git a/Cpp_example/C02_TemplateMatching/images/template_2.png b/cpp_example/C02_TemplateMatching/images/template_2.png similarity index 100% rename from Cpp_example/C02_TemplateMatching/images/template_2.png rename to cpp_example/C02_TemplateMatching/images/template_2.png diff --git a/Cpp_example/C02_TemplateMatching/images/template_3.png b/cpp_example/C02_TemplateMatching/images/template_3.png similarity index 100% rename from Cpp_example/C02_TemplateMatching/images/template_3.png rename to cpp_example/C02_TemplateMatching/images/template_3.png diff --git a/Cpp_example/C03_Template_Matching_more/CMakeLists.txt b/cpp_example/C03_Template_Matching_more/CMakeLists.txt similarity index 100% rename from Cpp_example/C03_Template_Matching_more/CMakeLists.txt rename to cpp_example/C03_Template_Matching_more/CMakeLists.txt diff --git a/Cpp_example/C03_Template_Matching_more/README.md b/cpp_example/C03_Template_Matching_more/README.md similarity index 96% rename from Cpp_example/C03_Template_Matching_more/README.md rename to cpp_example/C03_Template_Matching_more/README.md index ef64d3d598b1de4bddb49b4cfa2e463066b56962..a70ed09a81a3f118785e1d89d6b8b19552c3785a 100755 --- a/Cpp_example/C03_Template_Matching_more/README.md +++ b/cpp_example/C03_Template_Matching_more/README.md @@ -259,7 +259,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/C03_TemplateMatching_more +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/C03_TemplateMatching_more # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/C03_Template_Matching_more/Template_Matching_more.cc b/cpp_example/C03_Template_Matching_more/Template_Matching_more.cc similarity index 100% rename from Cpp_example/C03_Template_Matching_more/Template_Matching_more.cc rename to cpp_example/C03_Template_Matching_more/Template_Matching_more.cc diff --git a/Cpp_example/C03_Template_Matching_more/images/2025_0421_11_32_44_406.png b/cpp_example/C03_Template_Matching_more/images/2025_0421_11_32_44_406.png similarity index 100% rename from Cpp_example/C03_Template_Matching_more/images/2025_0421_11_32_44_406.png rename to cpp_example/C03_Template_Matching_more/images/2025_0421_11_32_44_406.png diff --git a/Cpp_example/C03_Template_Matching_more/images/All.png b/cpp_example/C03_Template_Matching_more/images/All.png similarity index 100% rename from Cpp_example/C03_Template_Matching_more/images/All.png rename to cpp_example/C03_Template_Matching_more/images/All.png diff --git a/Cpp_example/C03_Template_Matching_more/images/template_0.png b/cpp_example/C03_Template_Matching_more/images/template_0.png similarity index 100% rename from Cpp_example/C03_Template_Matching_more/images/template_0.png rename to cpp_example/C03_Template_Matching_more/images/template_0.png diff --git a/Cpp_example/C03_Template_Matching_more/images/template_1.png b/cpp_example/C03_Template_Matching_more/images/template_1.png similarity index 100% rename from Cpp_example/C03_Template_Matching_more/images/template_1.png rename to cpp_example/C03_Template_Matching_more/images/template_1.png diff --git a/Cpp_example/C03_Template_Matching_more/images/template_2.png b/cpp_example/C03_Template_Matching_more/images/template_2.png similarity index 100% rename from Cpp_example/C03_Template_Matching_more/images/template_2.png rename to cpp_example/C03_Template_Matching_more/images/template_2.png diff --git a/Cpp_example/C03_Template_Matching_more/images/template_3.png b/cpp_example/C03_Template_Matching_more/images/template_3.png similarity index 100% rename from Cpp_example/C03_Template_Matching_more/images/template_3.png rename to cpp_example/C03_Template_Matching_more/images/template_3.png diff --git a/Cpp_example/C04_find_contours/CMakeLists.txt b/cpp_example/C04_find_contours/CMakeLists.txt similarity index 100% rename from Cpp_example/C04_find_contours/CMakeLists.txt rename to cpp_example/C04_find_contours/CMakeLists.txt diff --git a/Cpp_example/C04_find_contours/README.md b/cpp_example/C04_find_contours/README.md similarity index 96% rename from Cpp_example/C04_find_contours/README.md rename to cpp_example/C04_find_contours/README.md index 2191a09e91b153d5838416aa93cd21adf5e990eb..65985e10332a03802be6402a26539d7afd84cb99 100755 --- a/Cpp_example/C04_find_contours/README.md +++ b/cpp_example/C04_find_contours/README.md @@ -441,7 +441,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/C04_find_contours +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/C04_find_contours # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/C04_find_contours/find_circle.cc b/cpp_example/C04_find_contours/find_circle.cc similarity index 100% rename from Cpp_example/C04_find_contours/find_circle.cc rename to cpp_example/C04_find_contours/find_circle.cc diff --git a/Cpp_example/C04_find_contours/find_line.cc b/cpp_example/C04_find_contours/find_line.cc similarity index 100% rename from Cpp_example/C04_find_contours/find_line.cc rename to cpp_example/C04_find_contours/find_line.cc diff --git a/Cpp_example/C04_find_contours/find_polygon.cc b/cpp_example/C04_find_contours/find_polygon.cc similarity index 100% rename from Cpp_example/C04_find_contours/find_polygon.cc rename to cpp_example/C04_find_contours/find_polygon.cc diff --git a/Cpp_example/C04_find_contours/images/1.png b/cpp_example/C04_find_contours/images/1.png similarity index 100% rename from Cpp_example/C04_find_contours/images/1.png rename to cpp_example/C04_find_contours/images/1.png diff --git a/Cpp_example/C04_find_contours/images/2.png b/cpp_example/C04_find_contours/images/2.png similarity index 100% rename from Cpp_example/C04_find_contours/images/2.png rename to cpp_example/C04_find_contours/images/2.png diff --git a/Cpp_example/C04_find_contours/images/3.png b/cpp_example/C04_find_contours/images/3.png similarity index 100% rename from Cpp_example/C04_find_contours/images/3.png rename to cpp_example/C04_find_contours/images/3.png diff --git a/Cpp_example/C04_find_contours/images/circle.png b/cpp_example/C04_find_contours/images/circle.png similarity index 100% rename from Cpp_example/C04_find_contours/images/circle.png rename to cpp_example/C04_find_contours/images/circle.png diff --git a/Cpp_example/C04_find_contours/images/line.png b/cpp_example/C04_find_contours/images/line.png similarity index 100% rename from Cpp_example/C04_find_contours/images/line.png rename to cpp_example/C04_find_contours/images/line.png diff --git a/Cpp_example/C04_find_contours/images/polygon.png b/cpp_example/C04_find_contours/images/polygon.png similarity index 100% rename from Cpp_example/C04_find_contours/images/polygon.png rename to cpp_example/C04_find_contours/images/polygon.png diff --git a/Cpp_example/C05_Finecolorandshape/CMakeLists.txt b/cpp_example/C05_Finecolorandshape/CMakeLists.txt similarity index 100% rename from Cpp_example/C05_Finecolorandshape/CMakeLists.txt rename to cpp_example/C05_Finecolorandshape/CMakeLists.txt diff --git a/Cpp_example/C05_Finecolorandshape/Finecolorandshape.cc b/cpp_example/C05_Finecolorandshape/Finecolorandshape.cc similarity index 100% rename from Cpp_example/C05_Finecolorandshape/Finecolorandshape.cc rename to cpp_example/C05_Finecolorandshape/Finecolorandshape.cc diff --git a/Cpp_example/C05_Finecolorandshape/README.md b/cpp_example/C05_Finecolorandshape/README.md similarity index 96% rename from Cpp_example/C05_Finecolorandshape/README.md rename to cpp_example/C05_Finecolorandshape/README.md index 26214b9ec273aedd3c6aa70b65f63c98e6a72170..e65bf340c881199ae61d59cfb328479cc96666a7 100755 --- a/Cpp_example/C05_Finecolorandshape/README.md +++ b/cpp_example/C05_Finecolorandshape/README.md @@ -413,7 +413,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/C05_Find_color_and_shape +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/C05_Find_color_and_shape # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/C05_Finecolorandshape/images/1.png b/cpp_example/C05_Finecolorandshape/images/1.png similarity index 100% rename from Cpp_example/C05_Finecolorandshape/images/1.png rename to cpp_example/C05_Finecolorandshape/images/1.png diff --git a/Cpp_example/C05_Finecolorandshape/images/2025_0421_11_48_43_095.png b/cpp_example/C05_Finecolorandshape/images/2025_0421_11_48_43_095.png similarity index 100% rename from Cpp_example/C05_Finecolorandshape/images/2025_0421_11_48_43_095.png rename to cpp_example/C05_Finecolorandshape/images/2025_0421_11_48_43_095.png diff --git a/Cpp_example/C06_test_qr_code_detector/CMakeLists.txt b/cpp_example/C06_test_qr_code_detector/CMakeLists.txt similarity index 100% rename from Cpp_example/C06_test_qr_code_detector/CMakeLists.txt rename to cpp_example/C06_test_qr_code_detector/CMakeLists.txt diff --git a/Cpp_example/C06_test_qr_code_detector/README.md b/cpp_example/C06_test_qr_code_detector/README.md similarity index 96% rename from Cpp_example/C06_test_qr_code_detector/README.md rename to cpp_example/C06_test_qr_code_detector/README.md index a2015437b182fbc2f97419ad10d9ca930b4678d3..4d67fe29f4b9e66ed0695331000b875ee5a239dd 100755 --- a/Cpp_example/C06_test_qr_code_detector/README.md +++ b/cpp_example/C06_test_qr_code_detector/README.md @@ -221,7 +221,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/C06_test_qr_code_detector +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/C06_test_qr_code_detector # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/C06_test_qr_code_detector/images/1.png b/cpp_example/C06_test_qr_code_detector/images/1.png similarity index 100% rename from Cpp_example/C06_test_qr_code_detector/images/1.png rename to cpp_example/C06_test_qr_code_detector/images/1.png diff --git a/Cpp_example/C06_test_qr_code_detector/images/test_capture.png b/cpp_example/C06_test_qr_code_detector/images/test_capture.png similarity index 100% rename from Cpp_example/C06_test_qr_code_detector/images/test_capture.png rename to cpp_example/C06_test_qr_code_detector/images/test_capture.png diff --git a/Cpp_example/C06_test_qr_code_detector/test_qr_code_detector.cc b/cpp_example/C06_test_qr_code_detector/test_qr_code_detector.cc similarity index 100% rename from Cpp_example/C06_test_qr_code_detector/test_qr_code_detector.cc rename to cpp_example/C06_test_qr_code_detector/test_qr_code_detector.cc diff --git a/Cpp_example/C07_test_bar_codeDetector/CMakeLists.txt b/cpp_example/C07_test_bar_codeDetector/CMakeLists.txt similarity index 100% rename from Cpp_example/C07_test_bar_codeDetector/CMakeLists.txt rename to cpp_example/C07_test_bar_codeDetector/CMakeLists.txt diff --git a/Cpp_example/C07_test_bar_codeDetector/README.md b/cpp_example/C07_test_bar_codeDetector/README.md similarity index 96% rename from Cpp_example/C07_test_bar_codeDetector/README.md rename to cpp_example/C07_test_bar_codeDetector/README.md index 4f3b74fc061dc91a0e1324f1a19d630dd67cf3a3..10676e2dea3aefcf08d03238e03bd15ead000d5c 100755 --- a/Cpp_example/C07_test_bar_codeDetector/README.md +++ b/cpp_example/C07_test_bar_codeDetector/README.md @@ -225,7 +225,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/C07_test_bar_codeDetector +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/C07_test_bar_codeDetector # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/C07_test_bar_codeDetector/images/1.png b/cpp_example/C07_test_bar_codeDetector/images/1.png similarity index 100% rename from Cpp_example/C07_test_bar_codeDetector/images/1.png rename to cpp_example/C07_test_bar_codeDetector/images/1.png diff --git a/Cpp_example/C07_test_bar_codeDetector/images/Bar_Code_result.png b/cpp_example/C07_test_bar_codeDetector/images/Bar_Code_result.png similarity index 100% rename from Cpp_example/C07_test_bar_codeDetector/images/Bar_Code_result.png rename to cpp_example/C07_test_bar_codeDetector/images/Bar_Code_result.png diff --git a/Cpp_example/C07_test_bar_codeDetector/test_bar_codeDetector.cc b/cpp_example/C07_test_bar_codeDetector/test_bar_codeDetector.cc similarity index 100% rename from Cpp_example/C07_test_bar_codeDetector/test_bar_codeDetector.cc rename to cpp_example/C07_test_bar_codeDetector/test_bar_codeDetector.cc diff --git a/Cpp_example/D01_test_detection/CMakeLists.txt b/cpp_example/D01_test_detection/CMakeLists.txt similarity index 100% rename from Cpp_example/D01_test_detection/CMakeLists.txt rename to cpp_example/D01_test_detection/CMakeLists.txt diff --git a/Cpp_example/D01_test_detection/README.md b/cpp_example/D01_test_detection/README.md similarity index 96% rename from Cpp_example/D01_test_detection/README.md rename to cpp_example/D01_test_detection/README.md index 7ea22dbd4b281569ca4e54274de2b42f0526f1df..e0840ded4e55d6f44bab412eff66271c912a3c5c 100755 --- a/Cpp_example/D01_test_detection/README.md +++ b/cpp_example/D01_test_detection/README.md @@ -268,7 +268,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/D01_test_detection +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/D01_test_detection # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/D01_test_detection/images/1.png b/cpp_example/D01_test_detection/images/1.png similarity index 100% rename from Cpp_example/D01_test_detection/images/1.png rename to cpp_example/D01_test_detection/images/1.png diff --git a/Cpp_example/D01_test_detection/images/2025_0421_11_51_17_647.png b/cpp_example/D01_test_detection/images/2025_0421_11_51_17_647.png similarity index 100% rename from Cpp_example/D01_test_detection/images/2025_0421_11_51_17_647.png rename to cpp_example/D01_test_detection/images/2025_0421_11_51_17_647.png diff --git a/Cpp_example/D01_test_detection/test_detection.cc b/cpp_example/D01_test_detection/test_detection.cc similarity index 100% rename from Cpp_example/D01_test_detection/test_detection.cc rename to cpp_example/D01_test_detection/test_detection.cc diff --git a/Cpp_example/D02_DigitHandRecog/CMakeLists.txt b/cpp_example/D02_DigitHandRecog/CMakeLists.txt similarity index 100% rename from Cpp_example/D02_DigitHandRecog/CMakeLists.txt rename to cpp_example/D02_DigitHandRecog/CMakeLists.txt diff --git a/Cpp_example/D02_DigitHandRecog/DigitHandRecog.cc b/cpp_example/D02_DigitHandRecog/DigitHandRecog.cc similarity index 100% rename from Cpp_example/D02_DigitHandRecog/DigitHandRecog.cc rename to cpp_example/D02_DigitHandRecog/DigitHandRecog.cc diff --git a/Cpp_example/D02_DigitHandRecog/README.md b/cpp_example/D02_DigitHandRecog/README.md similarity index 96% rename from Cpp_example/D02_DigitHandRecog/README.md rename to cpp_example/D02_DigitHandRecog/README.md index ac6119c2223b8396d90fb645db897291fceda567..1bb63528430275ea8400e48269992cfefb29f0dc 100755 --- a/Cpp_example/D02_DigitHandRecog/README.md +++ b/cpp_example/D02_DigitHandRecog/README.md @@ -250,7 +250,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/D02_DigitHandRecog +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/D02_DigitHandRecog # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/D02_DigitHandRecog/images/1.png b/cpp_example/D02_DigitHandRecog/images/1.png similarity index 100% rename from Cpp_example/D02_DigitHandRecog/images/1.png rename to cpp_example/D02_DigitHandRecog/images/1.png diff --git a/Cpp_example/D02_DigitHandRecog/images/Capture_7.png b/cpp_example/D02_DigitHandRecog/images/Capture_7.png similarity index 100% rename from Cpp_example/D02_DigitHandRecog/images/Capture_7.png rename to cpp_example/D02_DigitHandRecog/images/Capture_7.png diff --git a/Cpp_example/D02_DigitHandRecog/images/cls_result.png b/cpp_example/D02_DigitHandRecog/images/cls_result.png similarity index 100% rename from Cpp_example/D02_DigitHandRecog/images/cls_result.png rename to cpp_example/D02_DigitHandRecog/images/cls_result.png diff --git a/Cpp_example/D03_face_recognition_system/CMakeLists.txt b/cpp_example/D03_face_recognition_system/CMakeLists.txt similarity index 100% rename from Cpp_example/D03_face_recognition_system/CMakeLists.txt rename to cpp_example/D03_face_recognition_system/CMakeLists.txt diff --git a/Cpp_example/D03_face_recognition_system/README.md b/cpp_example/D03_face_recognition_system/README.md similarity index 96% rename from Cpp_example/D03_face_recognition_system/README.md rename to cpp_example/D03_face_recognition_system/README.md index 5ab0c2b82ccd7ff551344a716b6a611f41b919fd..3a5780c12a083f01662fed644fdf3513306d0de0 100755 --- a/Cpp_example/D03_face_recognition_system/README.md +++ b/cpp_example/D03_face_recognition_system/README.md @@ -235,7 +235,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/D03_face_recognition_system +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/D03_face_recognition_system # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/D03_face_recognition_system/face_recognition_system.cc b/cpp_example/D03_face_recognition_system/face_recognition_system.cc similarity index 100% rename from Cpp_example/D03_face_recognition_system/face_recognition_system.cc rename to cpp_example/D03_face_recognition_system/face_recognition_system.cc diff --git a/Cpp_example/D03_face_recognition_system/images/1.png b/cpp_example/D03_face_recognition_system/images/1.png similarity index 100% rename from Cpp_example/D03_face_recognition_system/images/1.png rename to cpp_example/D03_face_recognition_system/images/1.png diff --git a/Cpp_example/D03_face_recognition_system/images/result.png b/cpp_example/D03_face_recognition_system/images/result.png similarity index 100% rename from Cpp_example/D03_face_recognition_system/images/result.png rename to cpp_example/D03_face_recognition_system/images/result.png diff --git a/Cpp_example/D04_distance/CMakeLists.txt b/cpp_example/D04_distance/CMakeLists.txt similarity index 100% rename from Cpp_example/D04_distance/CMakeLists.txt rename to cpp_example/D04_distance/CMakeLists.txt diff --git a/Cpp_example/D04_distance/README.md b/cpp_example/D04_distance/README.md similarity index 96% rename from Cpp_example/D04_distance/README.md rename to cpp_example/D04_distance/README.md index eb0a402d9949fdf403a48026ad065bc896b6aeb2..3987a8e75d92a1764f1435c5b46960421b15d8b9 100755 --- a/Cpp_example/D04_distance/README.md +++ b/cpp_example/D04_distance/README.md @@ -318,7 +318,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/D04_distance +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/D04_distance # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/D04_distance/distance.cc b/cpp_example/D04_distance/distance.cc similarity index 100% rename from Cpp_example/D04_distance/distance.cc rename to cpp_example/D04_distance/distance.cc diff --git a/Cpp_example/D04_distance/images/1.png b/cpp_example/D04_distance/images/1.png similarity index 100% rename from Cpp_example/D04_distance/images/1.png rename to cpp_example/D04_distance/images/1.png diff --git a/Cpp_example/D04_distance/images/2025_0421_10_25_53_469.png b/cpp_example/D04_distance/images/2025_0421_10_25_53_469.png similarity index 100% rename from Cpp_example/D04_distance/images/2025_0421_10_25_53_469.png rename to cpp_example/D04_distance/images/2025_0421_10_25_53_469.png diff --git a/Cpp_example/D05_ocr_text_recognition/CMakeLists.txt b/cpp_example/D05_ocr_text_recognition/CMakeLists.txt similarity index 100% rename from Cpp_example/D05_ocr_text_recognition/CMakeLists.txt rename to cpp_example/D05_ocr_text_recognition/CMakeLists.txt diff --git a/Cpp_example/D05_ocr_text_recognition/README.md b/cpp_example/D05_ocr_text_recognition/README.md similarity index 96% rename from Cpp_example/D05_ocr_text_recognition/README.md rename to cpp_example/D05_ocr_text_recognition/README.md index d7b86fb81cb68e02cbb48a6f94b1301c681b0bb1..0272e7ef325a547306ddbc919869ec5d730643ad 100755 --- a/Cpp_example/D05_ocr_text_recognition/README.md +++ b/cpp_example/D05_ocr_text_recognition/README.md @@ -348,7 +348,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/D05_ocr_text_recognition +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/D05_ocr_text_recognition # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/D05_ocr_text_recognition/images/1.png b/cpp_example/D05_ocr_text_recognition/images/1.png similarity index 100% rename from Cpp_example/D05_ocr_text_recognition/images/1.png rename to cpp_example/D05_ocr_text_recognition/images/1.png diff --git a/Cpp_example/D05_ocr_text_recognition/images/Test.jpg b/cpp_example/D05_ocr_text_recognition/images/Test.jpg similarity index 100% rename from Cpp_example/D05_ocr_text_recognition/images/Test.jpg rename to cpp_example/D05_ocr_text_recognition/images/Test.jpg diff --git a/Cpp_example/D05_ocr_text_recognition/images/result.png b/cpp_example/D05_ocr_text_recognition/images/result.png similarity index 100% rename from Cpp_example/D05_ocr_text_recognition/images/result.png rename to cpp_example/D05_ocr_text_recognition/images/result.png diff --git a/Cpp_example/D05_ocr_text_recognition/ncnn_rec.cc b/cpp_example/D05_ocr_text_recognition/ncnn_rec.cc similarity index 100% rename from Cpp_example/D05_ocr_text_recognition/ncnn_rec.cc rename to cpp_example/D05_ocr_text_recognition/ncnn_rec.cc diff --git a/Cpp_example/D06_ocr_text_detection/CMakeLists.txt b/cpp_example/D06_ocr_text_detection/CMakeLists.txt similarity index 100% rename from Cpp_example/D06_ocr_text_detection/CMakeLists.txt rename to cpp_example/D06_ocr_text_detection/CMakeLists.txt diff --git a/Cpp_example/D06_ocr_text_detection/README.md b/cpp_example/D06_ocr_text_detection/README.md similarity index 96% rename from Cpp_example/D06_ocr_text_detection/README.md rename to cpp_example/D06_ocr_text_detection/README.md index de54f5015e7c221a2fd90ed44f5c2409f68e9adc..ece8bd4f38fa11d3a76a25b70269c678fd3e0ed8 100755 --- a/Cpp_example/D06_ocr_text_detection/README.md +++ b/cpp_example/D06_ocr_text_detection/README.md @@ -410,7 +410,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/D06_ocr_text_detection +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/D06_ocr_text_detection # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/D06_ocr_text_detection/images/1.png b/cpp_example/D06_ocr_text_detection/images/1.png similarity index 100% rename from Cpp_example/D06_ocr_text_detection/images/1.png rename to cpp_example/D06_ocr_text_detection/images/1.png diff --git a/Cpp_example/D06_ocr_text_detection/images/result1.png b/cpp_example/D06_ocr_text_detection/images/result1.png similarity index 100% rename from Cpp_example/D06_ocr_text_detection/images/result1.png rename to cpp_example/D06_ocr_text_detection/images/result1.png diff --git a/Cpp_example/D06_ocr_text_detection/images/view.png b/cpp_example/D06_ocr_text_detection/images/view.png similarity index 100% rename from Cpp_example/D06_ocr_text_detection/images/view.png rename to cpp_example/D06_ocr_text_detection/images/view.png diff --git a/Cpp_example/D06_ocr_text_detection/ncnn_dbnet.cc b/cpp_example/D06_ocr_text_detection/ncnn_dbnet.cc similarity index 100% rename from Cpp_example/D06_ocr_text_detection/ncnn_dbnet.cc rename to cpp_example/D06_ocr_text_detection/ncnn_dbnet.cc diff --git a/Cpp_example/D07_ocr_synthesis/CMakeLists.txt b/cpp_example/D07_ocr_synthesis/CMakeLists.txt similarity index 100% rename from Cpp_example/D07_ocr_synthesis/CMakeLists.txt rename to cpp_example/D07_ocr_synthesis/CMakeLists.txt diff --git a/Cpp_example/D07_ocr_synthesis/OcrLite.cc b/cpp_example/D07_ocr_synthesis/OcrLite.cc similarity index 100% rename from Cpp_example/D07_ocr_synthesis/OcrLite.cc rename to cpp_example/D07_ocr_synthesis/OcrLite.cc diff --git a/Cpp_example/D07_ocr_synthesis/README.md b/cpp_example/D07_ocr_synthesis/README.md similarity index 96% rename from Cpp_example/D07_ocr_synthesis/README.md rename to cpp_example/D07_ocr_synthesis/README.md index a3869b0c13f6dd7707391ed8da7019f4c420d7bf..e51371bd0178c6ee4a2cd3bde84950937ac01db1 100755 --- a/Cpp_example/D07_ocr_synthesis/README.md +++ b/cpp_example/D07_ocr_synthesis/README.md @@ -522,7 +522,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/D07_ocr_synthesis +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/D07_ocr_synthesis # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/D07_ocr_synthesis/images/Result_Det.png b/cpp_example/D07_ocr_synthesis/images/Result_Det.png similarity index 100% rename from Cpp_example/D07_ocr_synthesis/images/Result_Det.png rename to cpp_example/D07_ocr_synthesis/images/Result_Det.png diff --git a/Cpp_example/D07_ocr_synthesis/images/Result_Rec.png b/cpp_example/D07_ocr_synthesis/images/Result_Rec.png similarity index 100% rename from Cpp_example/D07_ocr_synthesis/images/Result_Rec.png rename to cpp_example/D07_ocr_synthesis/images/Result_Rec.png diff --git a/Cpp_example/D07_ocr_synthesis/images/test.png b/cpp_example/D07_ocr_synthesis/images/test.png similarity index 100% rename from Cpp_example/D07_ocr_synthesis/images/test.png rename to cpp_example/D07_ocr_synthesis/images/test.png diff --git a/Cpp_example/D07_ocr_synthesis/images/view.png b/cpp_example/D07_ocr_synthesis/images/view.png similarity index 100% rename from Cpp_example/D07_ocr_synthesis/images/view.png rename to cpp_example/D07_ocr_synthesis/images/view.png diff --git a/Cpp_example/D08_pp_humanseg/CMakeLists.txt b/cpp_example/D08_pp_humanseg/CMakeLists.txt similarity index 100% rename from Cpp_example/D08_pp_humanseg/CMakeLists.txt rename to cpp_example/D08_pp_humanseg/CMakeLists.txt diff --git a/Cpp_example/D08_pp_humanseg/README.md b/cpp_example/D08_pp_humanseg/README.md similarity index 99% rename from Cpp_example/D08_pp_humanseg/README.md rename to cpp_example/D08_pp_humanseg/README.md index 7deb1303787d67d49636c41de493e14138946121..b3198a05afbabe7e075925a68ecb1bc746c2e622 100644 --- a/Cpp_example/D08_pp_humanseg/README.md +++ b/cpp_example/D08_pp_humanseg/README.md @@ -403,7 +403,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目。 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/D08_pp_humanseg +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/D08_pp_humanseg # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/D08_pp_humanseg/images/result.jpg b/cpp_example/D08_pp_humanseg/images/result.jpg similarity index 100% rename from Cpp_example/D08_pp_humanseg/images/result.jpg rename to cpp_example/D08_pp_humanseg/images/result.jpg diff --git a/Cpp_example/D08_pp_humanseg/images/test.png b/cpp_example/D08_pp_humanseg/images/test.png similarity index 100% rename from Cpp_example/D08_pp_humanseg/images/test.png rename to cpp_example/D08_pp_humanseg/images/test.png diff --git a/Cpp_example/D08_pp_humanseg/images/view.png b/cpp_example/D08_pp_humanseg/images/view.png similarity index 100% rename from Cpp_example/D08_pp_humanseg/images/view.png rename to cpp_example/D08_pp_humanseg/images/view.png diff --git a/Cpp_example/D08_pp_humanseg/pp_humanseg.cc b/cpp_example/D08_pp_humanseg/pp_humanseg.cc similarity index 100% rename from Cpp_example/D08_pp_humanseg/pp_humanseg.cc rename to cpp_example/D08_pp_humanseg/pp_humanseg.cc diff --git a/Cpp_example/D09_plate_recognize/CMakeLists.txt b/cpp_example/D09_plate_recognize/CMakeLists.txt similarity index 100% rename from Cpp_example/D09_plate_recognize/CMakeLists.txt rename to cpp_example/D09_plate_recognize/CMakeLists.txt diff --git a/Cpp_example/D09_plate_recognize/README.md b/cpp_example/D09_plate_recognize/README.md similarity index 99% rename from Cpp_example/D09_plate_recognize/README.md rename to cpp_example/D09_plate_recognize/README.md index 5c8e4c127b25824f7b1959128b063b54cabc2eb3..05b6b33d54b1ae1f963a83ae9170edcc65135276 100644 --- a/Cpp_example/D09_plate_recognize/README.md +++ b/cpp_example/D09_plate_recognize/README.md @@ -530,7 +530,7 @@ install( 使用 Docker Destop 打开 LockzhinerVisionModule 容器并执行以下命令来编译项目 ```bash # 进入Demo所在目录 -cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/Cpp_example/D09_plate_recognize +cd /LockzhinerVisionModuleWorkSpace/LockzhinerVisionModule/cpp_example/D09_plate_recognize # 创建编译目录 rm -rf build && mkdir build && cd build # 配置交叉编译工具链 diff --git a/Cpp_example/D09_plate_recognize/images/D09_1.png b/cpp_example/D09_plate_recognize/images/D09_1.png similarity index 100% rename from Cpp_example/D09_plate_recognize/images/D09_1.png rename to cpp_example/D09_plate_recognize/images/D09_1.png diff --git a/Cpp_example/D09_plate_recognize/images/D09_2.jpg b/cpp_example/D09_plate_recognize/images/D09_2.jpg similarity index 100% rename from Cpp_example/D09_plate_recognize/images/D09_2.jpg rename to cpp_example/D09_plate_recognize/images/D09_2.jpg diff --git a/Cpp_example/D09_plate_recognize/images/D09_3.png b/cpp_example/D09_plate_recognize/images/D09_3.png similarity index 100% rename from Cpp_example/D09_plate_recognize/images/D09_3.png rename to cpp_example/D09_plate_recognize/images/D09_3.png diff --git a/Cpp_example/D09_plate_recognize/images/D09_4.png b/cpp_example/D09_plate_recognize/images/D09_4.png similarity index 100% rename from Cpp_example/D09_plate_recognize/images/D09_4.png rename to cpp_example/D09_plate_recognize/images/D09_4.png diff --git a/Cpp_example/D09_plate_recognize/myfontface.h b/cpp_example/D09_plate_recognize/myfontface.h similarity index 100% rename from Cpp_example/D09_plate_recognize/myfontface.h rename to cpp_example/D09_plate_recognize/myfontface.h diff --git a/Cpp_example/D09_plate_recognize/plate_recognize.cc b/cpp_example/D09_plate_recognize/plate_recognize.cc similarity index 100% rename from Cpp_example/D09_plate_recognize/plate_recognize.cc rename to cpp_example/D09_plate_recognize/plate_recognize.cc diff --git a/docs/introductory_tutorial/cpp_development_environment.md b/docs/introductory_tutorial/cpp_development_environment.md index 1327652dbec1d999371d28435aaed5463e4a21ba..25ab09fe870b1b1b25e27b00a0f90c7fc1b81f4b 100644 --- a/docs/introductory_tutorial/cpp_development_environment.md +++ b/docs/introductory_tutorial/cpp_development_environment.md @@ -272,4 +272,4 @@ bash install-sh.sh ## 7 验证开发环境 -请参考 [编写第一个 Hello World 程序](../../Cpp_example/hello_world/README.md) 来验证开发环境是否能够正常使用 \ No newline at end of file +请参考 [编写第一个 Hello World 程序](../../cpp_example/hello_world/README.md) 来验证开发环境是否能够正常使用 \ No newline at end of file